Live data from Hacker News

Viewing profile — 1udfx9cf8azi0

1udfx9cf8azi0

HN member
Joined
Fri, Jul 14, 2017, 11:52 PM UTC
HN karma
18
Public activity
7 items

About 1udfx9cf8azi0

No profile information was provided.

Recent public activity

  1. comment
    Comment #39922042

    > No, because if nbytes > sizeof(*hwrpb), your version causes the kernel to only write part of the buffer, and then when the app accesses fields at the end of the struct, it would …

  2. comment
    Comment #39921803

    > The original less-than check was deemed incorrect It was only deemed incorrect because of an information leak. Not because it's a valid use-case for user space to copy smaller po…

  3. comment
    Comment #39920823

    That's what the original check is for: if (nbytes If the buffer isn't large enough to hold *hwrpb, then it already fails. The original check was good, only needed to change the amo…

  4. comment
    Comment #39920429

    if (nbytes The fix that was done was: if (nbytes > sizeof(*hwrpb)) But I think the correct fix is: if (copy_to_user(buffer, hwrpb, sizeof(*hwrpb)) != 0) It never makes sense to cop…

  5. comment
    Comment #37850452

    Hacker News is not the best crowd for something like this. Everyone here most likely already has their own optimized workflow for something like this, including me. This is probabl…

  6. comment
    Comment #37636357

    The study did not show that Ivermectin killed SARS-CoV-2 viral particles. Prior to the pandemic, Ivermectin was known to act as an broad anti-viral. This is due to Ivermectin being…

  7. story