Merge "Remove memory leak."

This commit is contained in:
Piotr Jastrzebski
2014-08-11 09:54:23 +00:00
committed by Gerrit Code Review

View File

@ -53,6 +53,10 @@ public:
_ZipEntryRO() : cookie(NULL) {
}
~_ZipEntryRO() {
EndIteration(cookie);
}
private:
_ZipEntryRO(const _ZipEntryRO& other);
_ZipEntryRO& operator=(const _ZipEntryRO& other);