Anderton. I found one seemingly very minor bug that I would never have complained about because it seemed trivial. But I entered it into the system, Noel checked it out, and he found that it actually was a manifestation of a more serious bug that was not minor.
There is no such thing as a minor or trivial bug. A bug is a bug. Whether its a typo in the code that compiles correctly but gives the wrong results, or the programmer simply getting something wrong.
Why is there no such thing as a minor bug? As Craig pointed out, some bugs can be the manifestation of other bugs. Fix one and you fix several other things by default.
But leave in what you think is a "minor" bug that nobody is bothered about because there are 35 officially posted workarounds, half of which are easier to use than the original feature, and you're laying the foundation for disaster in future releases where new features rely on the output of the old code which has a "minor" bug.
The new feature may work perfectly and be totally bug free, but in certain circumstances which may or may not be life changing the old "minor" bug rears its head and the new feature doesn't work..
Everyone reports the new feature doesn't work, crashes their system, drives away their clients, abducted their children, etc, etc. The devs spend weeks going through the code and can't find anything wrong. Because there is nothing wrong... It's an old "minor" bug from 3 releases ago that was deemed to trivial to fix...
If you're going to release code, do your best to make sure there are no mistakes in it.
When bugs are reported, FIX THEM.