diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2010-05-17 19:15:42 +0200 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2010-05-17 19:15:42 +0200 |
commit | 65e13aae83c40b5e040b59ac40415b4f97d24bb1 (patch) | |
tree | 39f44d4ce491323a0df00ce47c6da296e16e75ba /src/exiv2wrapper.hpp | |
parent | 7f9cecbb6211c5712220ca6a9fc33eadbf6e7e8c (diff) | |
download | pyexiv2-65e13aae83c40b5e040b59ac40415b4f97d24bb1.tar.gz |
Free the allocated memory when deleting an ExifTag.
Diffstat (limited to 'src/exiv2wrapper.hpp')
-rw-r--r-- | src/exiv2wrapper.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/exiv2wrapper.hpp b/src/exiv2wrapper.hpp index 2be1855..29c266b 100644 --- a/src/exiv2wrapper.hpp +++ b/src/exiv2wrapper.hpp @@ -42,6 +42,8 @@ public: // Constructor ExifTag(const std::string& key, Exiv2::Exifdatum* datum=0, Exiv2::ExifData* data=0); + ~ExifTag(); + void setRawValue(const std::string& value); const std::string getKey(); |