vote up 1 vote down star

I've seen and fixed my good share of bugs, but I have a special place for this one.

One good day the application stopped working on production servers, a good reboot would fix it, but it would fail again after a few days, no way to reproduce in any of the QA or DEV environments, So we enabled the DEBUG on production, just to see that the the app was blocking when it tried to generate the session id...

After looking into it for a few hours I found that java was calling /dev/random to generate the session ids, and that call was blocking... As you can imagine after some research we switch to /dev/urandom and it all worked.

My answer to the higher ups? Sorry Mr CEO, the machine just does not have enough entropy.

flag

65% accept rate
many dups here: stackoverflow.com/questions/345577/… – Gulzar Apr 17 at 15:58

closed as exact duplicate by Neil Butterworth, Rik, Cerebrus, George Stocker, Gulzar Apr 17 at 15:59

2 Answers

vote up 0 vote down

One of the stranger bugs I had was when I was hacking away on some microcontroller (so no nice security mechanism). I basically had a cute little linked list, and was putting elements in there and taking elements out of there and all was good. Until elements came out of it that did not belong in there! How was this happening? Well, there was a fairly complicated condition my code could get into and in this particular case, an allocated list element would be intiialized partially only. In other words, allocated list elements had partially OLD values in them, which resulted in a very distant explosion. And by very, I mean very, because I did not check the data that came out of the list, because I had checked everything that goes into the list.

link|flag
vote up 1 vote down

Mine was a FORTRAN compiler that allowed the constant 1 (one) to be set to zero (not explicitly, but through passing 1 to a parameter that was assumed to be mutable). This was on the Data General MV8000.

I finally discovered this when I stepped to a line that did:

foo = 1

and instead of taking it at face value I asked the debugger to print out foo. Imagine my surprise when it printed out zero immediately after that line was executed, as did every other instance where the contstant 1 was being used.

My all time favorite bug.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.