Live data from Hacker News

Viewing profile — arestor

arestor

HN member
Joined
Fri, Feb 24, 2017, 12:15 AM UTC
HN karma
8
Public activity
4 items

About arestor

No profile information was provided.

Recent public activity

  1. comment
    Comment #13719721

    It's still UB. The array could potentially be at the end of the address space...

  2. comment
    Comment #13719444

    See https://news.ycombinator.com/item?id=13719437

  3. comment
    Comment #13719437

    Some features had a bug which lead to uninitialized memory (AKA previous memory contents) in the output of a malformed HTML page was requested. As one such server handles many site…

  4. comment
    Comment #13719382

    It's C. If you have an array, you may only compare to one element behind the last. Everything else is undefined behavior. So a compiler may just "optimize" your >= to ==.