Misunderstanding object lifetime, and when constructors and destructors get invoked, especially when trying to handle more than one resource at a time in a single class. A classic example:
struct bar { ... };
struct foo {
bar *p, *q;
foo() : p(new bar), q(new bar) { }
~foo() { delete p; delete q; }
};
Of course, if q(new bar) throws, ~foo() won't get called - and p will be leaked. This most often happens with pointers when people don't use smart pointers, but I've also seen it happen with OS handles and other such things - often because people are lazy and don't want to write a RAII wrapper class for every kind of handle, and think that "I'll just clean it up in destructor" is good enough.
To cure problem without fighting laziness, just teach the shared_ptr custom deleter trick - this is especially great with C++0x lambdas.