mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* something odd in emu10k1/emufx
@ 2008-01-19  2:16 Al Viro
  2008-01-19  9:36 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Al Viro @ 2008-01-19  2:16 UTC (permalink / raw)
  To: tiwai; +Cc: linux-kernel

In copy_tlv() we have
        tlv = kmalloc(data[1] * 4 + sizeof(data), GFP_KERNEL);
        if (!tlv)
                return NULL;
        memcpy(tlv, data, sizeof(data));
        if (copy_from_user(tlv + 2, _tlv + 2, data[1])) {
                kfree(tlv);
                return NULL;
        }
which looks rather odd, since either we kmalloc too much or copy too little...
Comments?

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-01-19  9:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-01-19  2:16 something odd in emu10k1/emufx Al Viro
2008-01-19  9:36 ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome