Monthly Archives: December 2010

Critical Bugs and other thoughts part 2

One of the most common areas where there are issues are with memory allocations. Deleting an object before it’s suppose to be deleted will lead to a crash and not deleting the object correctly may lead to what’s known as … Continue reading

Posted in Uncategorized | Leave a comment

Critical Bugs and other random thoughts

What I have tended to notice is that critical bugs usually come from issues that deal with shared resources, such as memory, disk usage, cpu usage, etc. Knowing how the program has been designed (what data structure it uses, what … Continue reading

Posted in Uncategorized | Leave a comment