What interesting programming bugs have you seen? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T04:14:58Zhttp://stackoverflow.com/feeds/question/319371http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen13What interesting programming bugs have you seen?MrValdez2008-11-26T00:33:50Z2009-11-07T07:08:04Z
<p>Finding bugs is part of a programmer's lifestyle. But there are some bugs that are just plain weird and the solution to them are unintuitive.</p>
<p>Post stories that has happened to you or someone else that involves these types of bugs. If you want, you can post links to great programming bug stories.</p>
<p>One bug story per post but you can post as many war stories as you want.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319373#31937315Answer by MrValdez for What interesting programming bugs have you seen?MrValdez2008-11-26T00:34:04Z2008-11-26T00:34:04Z<p>This <a href="http://nedbatchelder.com/blog/200811/print_this_file_your_printer_will_jam.html" rel="nofollow">file will jam your printer</a>. The bug report was simple:</p>
<blockquote>
<p>Print the attached file. The LPS-20
will jam. You'll have to open the
printer to remove the scrunched up
paper.</p>
</blockquote>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319374#31937426Answer by MrValdez for What interesting programming bugs have you seen?MrValdez2008-11-26T00:34:19Z2008-11-26T00:34:19Z<p>The <a href="http://www.ibiblio.org/harris/500milemail.html" rel="nofollow">500 mile email</a> bug refers to a bug where the users are having trouble sending email that was over 500 miles away. If the email was sent wihin 500 miles, the email would be sent.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319383#3193831Answer by FerranB for What interesting programming bugs have you seen?FerranB2008-11-26T00:43:36Z2008-11-26T00:43:36Z<p>I recommend you this very nice book: <a href="http://rads.stackoverflow.com/amzn/click/0201483041" rel="nofollow">It's Not a Bug, It's a Feature!: Computer Wit and Wisdom</a> </p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319385#3193852Answer by wonderchook for What interesting programming bugs have you seen?wonderchook2008-11-26T00:46:30Z2008-11-26T00:46:30Z<p>I worked on a product where everytime the CEO gave a demo it crashed. It was only when he gave a demo and nobody else had it happen. Turned out he was accessing some code that we didn't even know was on the system and something terrible was happening with a thread. </p>
<p>Needless to say it made us sweat for a while until we figured it out.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319387#3193874Answer by Kibbee for What interesting programming bugs have you seen?Kibbee2008-11-26T00:47:55Z2008-11-26T00:47:55Z<p>Here's a <a href="http://stackoverflow.com/questions/142697/vbnet-function-that-returns-string-only-returns-single-character">bug I logged on Stackoverflow</a>, because it was so weird, that I thought the solution would be very useful to anybody who ran into a similar bug. Basically the bug is that the syntax for accessing an array index, and the syntax for passing an argument to a function is exactly the same in VB.Net. Combine that with the fact that you don't have to include brackets when calling functions with no parameters, and well, hilarity ensues. Read the link for more details.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319392#3193923Answer by Kena for What interesting programming bugs have you seen?Kena2008-11-26T00:48:56Z2008-11-26T00:48:56Z<p>During one of my internships, I hit a weird deadlock problem that could only be reproduced on our most powerful machines (reserved for senior developers, not interns), if you jiggled the mouse for about fifteen minutes. And exclusively on a release build, with traces turned off. </p>
<p>It ended up being a deadlock between the licencing mechanism and the DLL loading library, in someone else's code, that could only be triggered with weird event timing (hence the mouse jiggling). But I did spend about two weeks jiggling that wretched mouse, until a more senior developer helped me debug the whole thing in assembly language, and figure out the culprit.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319406#3194067Answer by Bill the Lizard for What interesting programming bugs have you seen?Bill the Lizard2008-11-26T00:56:34Z2008-11-26T03:43:04Z<p>I'm glad to say I don't have any personal experience with this one, but I found the <a href="http://www.ima.umn.edu/~arnold/disasters/patriot.html" rel="nofollow">Patriot Missile Failure</a> to be an interesting read.</p>
<p>Quick Summary: A timing bug in the Patriot Missile Defense System required that the computers be rebooted periodically. One of the calculations was dependent on the time since system boot, and after about 100 hours of continuous operation the system would miss their targets, which were incoming SCUD missiles.</p>
<p>I work for a defense contractor, and this sort of thing helps me stay focused.</p>
<p><a href="http://en.wikipedia.org/wiki/MIM-104_Patriot#Patriot_in_the_Persian_Gulf_War_.281991.29" rel="nofollow">More information here.</a></p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319468#3194689Answer by MusiGenesis for What interesting programming bugs have you seen?MusiGenesis2008-11-26T01:20:48Z2008-11-26T01:27:34Z<p>A couple of years ago I started work at a company that mandated Internet Explorer 6, doing ASP.NET. I set up my machine as normal, and the first time I tried to View | Source I got nothing - no error message, nothing at all. No matter what we tried (reinstall everything, wipe-and-drop etc.) no one could figure it out or fix it, and for 6 months I did web development without being able to view source HTML (a real challenge, I have to tell you).</p>
<p>One day I stumbled across a Usenet posting that revealed the problem: if you have a shortcut named "Notepad" on your desktop, View | Source in IE6 doesn't work. It doesn't even have to point to Notepad.exe, just be named "Notepad". I renamed my Notepad shortcut to NotepadX and was able to work normally from that point on.</p>
<p>I'm hoping that some current or former MS employee will read this and smack his forehead when he remembers a weird piece of code he forgot to comment out. I can't imagine why else something like this would happen.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319488#31948810Answer by DarthPingu for What interesting programming bugs have you seen?DarthPingu2008-11-26T01:28:29Z2008-11-26T01:28:29Z<p>Back in the Atari ST days, it was quite popular for people to make "bootsector" demos, showcasing some sort of graphical effect shoehorned into the first sector of a floppy disk (512 bytes) so that the effect would be shown when you booted from that floppy.</p>
<p>As you might imagine, these demos became quite elaborate over time, and it wasn't long before people started making bootsector demos that could remove all the borders on the ST (also called "full overscan"), as well as showing a nice graphical effect. Removing the borders on an ST involved exploiting a bug in the video chip and some extremely careful timing, so doing this and showing a nice graphical effect, all in 512 bytes (less, if you count the bits of the bootsector you couldn't change) was all the rage at one point.</p>
<p>Of course, I had to get in on the action, so I made my own "full overscan" bootsector demo, and was so proud of it that I put in on quite a few of the floppies I used regularly, and also gave it to some friends who did the same.</p>
<p>Then, one day, my friend phoned me and said the demo had gone a bit wonky on one of his disks (it's a bit hard to describe -- it looked like the demo, but somehow <em>not</em>). During the course of trying to find out what was wrong with it, he tried another disk, and it was doing the same thing. And another. And another -- all the disks he had with the bootsector on them, in fact.</p>
<p>So I tried my disks. Same problem. On all of them. After much messing around, getting nowhere, we removed the bootsector from most (but not all) disks, and I spent the next few days trying to find out what was wrong with it.</p>
<p>After a few days, I got it working again. Now, this was before I'd ever heard of things like source control, so I wasn't sure <em>what</em> I'd changed to fix it in those few days, just that I somehow <em>had</em>. Remember, this overscan effect required perfect timing, so making demos like this work involved a lot of semi-mindless fiddling with the code and instruction timings, etc.</p>
<p>So I phoned my friend and told him I'd fixed it. While we were talking, I tried the disk just to double check it <em>was</em> ok, which it was. Until I realised: this was a different disk, one I hadn't "fixed".</p>
<p>Not quite sure what was going on, my friend tried one of his remaining disks with the old code on it. It <em>worked</em>.</p>
<p>As it turns out, the new code was the same as the old code. My days of fiddling with instruction timings had led me back to where I started, but yet it was now working.</p>
<p>All the disks we had that contained the bootsector were now working again.</p>
<p>They continued working for some time, maybe a week or so, and then, one day, all of them stopped working again. And then they started working again, and so on. At any given time, they either all worked, or none of them did.</p>
<p>We never did find out why this was happening. We eventually put it down to some periodic effect at the hardware level that affected how the overscan trick behaved. We were never 100% convinced by this explanation, but it was more comforting than the prospect of all instances of the bootsector being entangled in some spooky, quantum way, which was our next best guess. :)</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319775#3197750Answer by Kozyarchuk for What interesting programming bugs have you seen?Kozyarchuk2008-11-26T04:53:02Z2008-11-26T04:53:02Z<p>Here is an interesting collection of <a href="http://wiretap.area.com/Gopher/Library/Techdoc/Lore/famous.bug" rel="nofollow">bugs</a></p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/319863#3198633Answer by Luke Quinane for What interesting programming bugs have you seen?Luke Quinane2008-11-26T05:49:29Z2008-11-26T05:49:29Z<p>One tricky <a href="http://en.wikipedia.org/wiki/Heisenbug#Heisenbug" rel="nofollow">Heisenbug</a> that I tracked down actually turned up to be a hardware problem. I was working on an embedded system that communicated over a bus to another system. Since we were still in the prototyping stage the hardware guys just milled up an adapter board for the system (the actual board was delayed by several months so I was stuck with the milled board...).</p>
<p>Everything worked fine during the initial development until the software side of things was almost done. However strange things started to pop up. I would debug the data transfer process line-by-line and everything would be fine. But running the system without debugging it would fail is strange and seemingly random places (but consistent, e.g. always step 3 or 7, sometimes 9).</p>
<p>Getting frustrated I started to debug the values sent to the bus. I would write an value to the bus and read it straight back again and it was correct but bulk reads or writes would be different. When I debugged the process everything worked. It all seemed very strange!</p>
<p>After writing lots of sanity checking code and looking at the logic analyzer traces we realised that our little milled board was getting cross talk changing the signals when operating at high speed! Debugging was fine since the bus had plenty of time to stabilize before the next value was applied. Bulk or fast transfers failed since they were too fast and the board was not grounded properly.</p>
<p>It seems so obvious in hindsight but at the time it drove me crazy :) I guess that will learn me for assuming the hardware is always correct.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/320282#3202824Answer by Cirieno for What interesting programming bugs have you seen?Cirieno2008-11-26T10:50:32Z2008-11-26T10:50:32Z<p>I'm surprised no-one has mentioned the <a href="http://www.thedailywtf.com" rel="nofollow">Daily WTF</a> yet...</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/320308#3203083Answer by Stephen Darlington for What interesting programming bugs have you seen?Stephen Darlington2008-11-26T11:01:53Z2008-11-26T11:01:53Z<p>A colleague wrote a script to remove unused user accounts from an Oracle database. It worked well. Too well. It removed the <em>system</em> and <em>sys</em> users, which are like <em>root</em> in Unix.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/320421#3204212Answer by Valerion for What interesting programming bugs have you seen?Valerion2008-11-26T11:42:33Z2008-11-26T11:42:33Z<p>Some years ago we had a problem with one of our new customers, where a part of our (client/server) application would not work. This is not an application I developed, it was developed by another office of ours abroad.</p>
<p>They were using the exact release as I was and I could not reproduce it in the office at all. I tried various things all with no success. The client was getting angry and they were a big client. There was talk of contracts being cancelled.</p>
<p>In desperation I borrowed a new server that we had just received that was a similar spec to theirs, and did a from-scratch installation. I now had the same issue as the client. I formatted and installed onto another blank machine (same OS etc) with the same media and this time it worked.</p>
<p>Eventually I realised the problem. The client's server, and one of the servers I tried had a Hyperthreading CPU, and one of our components just refused to run with it. The dev team refused to believe it. We ended up buying and shipping them a Hyperthreading machine so they could see first-hand that this was indeed the case.</p>
<p>It was eventually fixed.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/321800#3218005Answer by Renato Soffiatto for What interesting programming bugs have you seen?Renato Soffiatto2008-11-26T19:09:38Z2008-11-26T19:09:38Z<p>A few years ago we had a strange problem.
We had some low-end machines, provided by the client, being used to simply collect some data through a Serial Port. All that simple, with a C program, running on Linux. Every night the file was rolled using a cron configured process, appending the current date on the filename.
It was all working well, until the client asked us to start to collect data from another source, and provided another machine to this. The same process we had through many times. But this time the rolling process was not working. The file was always named to January 1, 1970. The date_t 0.
Checking the date on the machine, it appeared to be correct. But every day the file was overwritten with the January 1, 1970 date.
After many days trying to find some problem or bug with the rolling process, somebody do run date twice in a row in the console. And the second date showed a date some seconds before the first one! Something surely wasn't right.
In the end, the problem was that this particular IBM Netvista model had some firmware problem that would give an inconstant clock time to the OS when ACPI was turned on and a Hyper-Threading processor was present.
After this, everytime a client was to give us a machine, we asked: "Will that be an IBM Netvista?"</p>
<p>+1 to "I guess that will learn me for assuming the hardware is always correct."</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/322062#3220621Answer by Brian Knoblauch for What interesting programming bugs have you seen?Brian Knoblauch2008-11-26T20:38:10Z2008-11-26T20:38:10Z<p>Many years ago I ran across an issue where Turbo Pascal would NOT accept a line setting "c" equal to 1 on a given line in one of my programs. Move it up or down a line, change the variable name, change the number, and it would take it. Very strange...</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/329503#3295030Answer by sergdev for What interesting programming bugs have you seen?sergdev2008-11-30T22:24:28Z2008-11-30T22:24:28Z<p>I wrote self-modification code in asm x86. The modification was in the loop which some insrtuctions further from code which introduces modifications. The problem is that internal pipe of instructions in the processor (it was old-old Intel i486) can be filled with instructions and my modifications are not accounted and old version of instructions are executed. The problem was complicated by the fact that it works ok when you debug you code - during debugging the pipe of processor was filled many times with debug code.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/430150#4301500Answer by Loren Pechtel for What interesting programming bugs have you seen?Loren Pechtel2009-01-09T23:39:33Z2009-01-09T23:39:33Z<p>One that to this day I don't know the real problem:</p>
<p>This was back when the 1.2mb floppies hadn't yet displaced the 360k ones, both were in use.</p>
<p>We had horrible luck with our software misbehaving on one customer's machine. Several inexplicable bugs and one of the two dongles would never work. Several sets of floppies were sent out after having been tested at our location and working correctly but failing there.</p>
<p>Finally a lucky break: Someone who happened to be in our office overheard a conversation and mentioned a problem with certain systems misreading 360k floppies in 1.2mb drives. As the target system was an XT (with a 360k floppy) networked to a AT (with the 1.2mb floppy) it was quite possible to try it from a 360k--and, baffling as it seems all of the craziness disappeared.</p>
<p>Since we always started from blank floppies and copied files on with a batch file things would always end up in the same spots and apparently the error was consistent in this case.</p>
<p>Of course at this point the real problem began: They had a guy there setting things up that was a total moron. As far as I could tell the real problem was that the XT machine wasn't configured to see the printer on the AT machine. If our program ran into that and barfed at being asked to print his reaction would be to reinstall--from the AT machine because it was faster. The only way to get him to install from the XT machine was to stay on the line with him while he did the whole thing--which of course did nothing about the printer problem. We had no experience with networking whatsoever and couldn't give any advice on that. I'm not sure the client <em>EVER</em> got things running because of that moron.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/430186#4301863Answer by Peter Rowell for What interesting programming bugs have you seen?Peter Rowell2009-01-09T23:55:46Z2009-01-09T23:55:46Z<p>Years ago (back when memory was expensive) I had a programmer that did everything he could to save space (Hey, Scott!). We had a field that held the text representation of the date & time to the second. He counted the number of characters in a maximum-length time string and that's how large he made a char[] buffer in a C routine.</p>
<p>The date numbers and the hour did not (for some reason) have a leading zero when < 10. C adds a 0x00 byte at the end of a string, so this buffer was one character short, but only on days >= 10, and months >= 10, and hours >= 10. On top of that, the value on the stack that was getting clobbered sometimes would be looked at later in the routine and sometimes not. Oh, and this was in a multi-threaded / multi-process environment. Cheeerist!</p>
<p>It took over two weeks to find this sucker.</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/430249#4302498Answer by Michael Borgwardt for What interesting programming bugs have you seen?Michael Borgwardt2009-01-10T00:26:16Z2009-01-10T00:26:16Z<p><strong>Born at the wrong time in the wrong place.</strong></p>
<p>I once got a bug report from a bank saying that a customer's <strong>birth date was not accepted</strong> when trying to open an account - they'd tried and found that any data within a range of about a month in the summer of 1945 was not accepted. This was a German bank, and the application was written in Java.</p>
<p>I could reproduce the bug and found that the date was rejected at a very low technical level in the <code>Calendar</code> class (long before any domain validation happened), just as if you'd entered the 30th of February. Some debugging sessions later I found that the <code>Calendar</code> class calculates a lot of internal date and time fields, and the <strong>daylight savings time</strong> field containd a value of 2 hours, which was rejected by internal sanity checks.</p>
<p>The name of that field led me to a Java API bug report which explained everything: The Locale for Germany is "centered" on Berlin, and in the summer of 1945 Berlin and the Soviet-occupied zone of Germany actually did have a 2 hour daylight savings time (which happened to be identical to Moscow time). Some smartass in the Java development team had "corrected" the sanity check in Java 1.4 because he believed 1 hour DST to be the maximum - but Berlin is in fact not the only timezone which had a 2 hour DST at one time or another. The bug was fixed in Java 1.5</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/430252#4302522Answer by Kev for What interesting programming bugs have you seen?Kev2009-01-10T00:28:56Z2009-01-10T00:28:56Z<p>I once heard a story, I think from the offices of Be, Inc., but I can't remember the full details now nor find a link, where a mysterious crash occurred every day around 6 or 7 AM. There was nothing special scheduled to run then, and it only happened on a specific machine. One day they decided to have someone get up early and see for themselves, and they found that the box was situated in such a way that for a tiny window of time every day, the sun would be beaming directly onto it through an office window, causing the hardware to overheat and malfunction.</p>
<p>The way they told it made for a better story. :)</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/430286#4302861Answer by surprise_ for What interesting programming bugs have you seen?surprise_2009-01-10T00:47:19Z2009-01-10T00:47:19Z<p><a href="http://www.crunchgear.com/2008/12/31/zune-bug-explained-in-detail/" rel="nofollow">http://www.crunchgear.com/2008/12/31/zune-bug-explained-in-detail/</a></p>
<p>always find it interesting how Microsoft let this happen</p>
<pre><code>year = ORIGINYEAR; /* = 1980 */
while (days > 365)
{
if (IsLeapYear(year))
{
if (days > 366)
{
days -= 366;
year += 1;
}
}
else
{
days -= 365;
year += 1;
}
}
</code></pre>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/430290#4302903Answer by metadaddy for What interesting programming bugs have you seen?metadaddy2009-01-10T00:52:48Z2009-01-10T00:52:48Z<p>Last April, I was working on an interoperability demo to be shown, on stage, at the RSA Security Conference. On the Saturday morning immediately preceding the event, <a href="http://blogs.sun.com/superpat/entry/rsa_conference_2008_concordia_done" rel="nofollow">my demo system</a> worked perfectly correctly - signed messages were being sent from a client to a web service, validated, and all was well. On returning to it on Saturday night, just to check, all messages were being rejected by the server, since their timestamp was one hour in the future. </p>
<p>After several hours of debugging (into the small hours of Sunday morning), I identified a <a href="https://xwss.dev.java.net/issues/show_bug.cgi?id=28" rel="nofollow">very subtle issue</a> in the <a href="https://xwss.dev.java.net/" rel="nofollow">Java XML and WebServices Security</a> code - an error in calculating time zone offsets, which only surfaced during the 8 hours between 2am UTC and 2am Pacific time, on the morning of the DST changeover.</p>
<p>Now, this wouldn't have hit me at all on this particular night, but the JVM on the demo server missed the patch for the DST change, so the server thought it was DST changeover night. Grrr!!!</p>
<p>And, of course, by Sunday morning, the situation had corrected itself, so if I hadn't looked at the demo on the Saturday night, I'd have been blissfully ignorant. But the bug would have still been there in the XWSS stack, lurking until the next DST changeover...</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/477313#4773131Answer by CyberShadow for What interesting programming bugs have you seen?CyberShadow2009-01-25T07:21:38Z2009-01-25T07:21:38Z<p>If you've ever played Worms Armageddon - <a href="http://www.youtube.com/watch?v=wp1_Z_ZCS0I" rel="nofollow">this</a> seems to happen on some configurations. We never managed to reproduce it...</p>
http://stackoverflow.com/questions/319371/what-interesting-programming-bugs-have-you-seen/1692292#16922921Answer by vvv for What interesting programming bugs have you seen?vvv2009-11-07T07:08:04Z2009-11-07T07:08:04Z<p>After too much programming in Java, where it checks for every single issue, I get started on writing some code in C. The program didn't work. Upon close inspection of the code, I notice I had this:</p>
<p>a=0;
for (i=0;i< n;i+=sizeof(mystruct))
if (a< complex_formula_involving_i_and_the_structure) a=complex_formula_involving_i_and_the_structure;</p>
<p>I was puzzled how a could get negative values at the end of that loop. I put a few printfs to check the values right before the if, and it was basically telling me that (0< -1)==true...</p>
<p>Finally after hours of being puzzled by this, I put a cast to int before that formula, and it worked. Still, it reminded me why I hate C.</p>