diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-11-21 15:39:30 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-11-21 15:39:30 +0100 |
commit | 147cc6b685384d95515205b9e2ac1400c27e3d4f (patch) | |
tree | 2b3d66120d68f474b18861eb38e44158b80b8c4f /plugingui/image.cc | |
parent | 2a7259164b887dec945d1cdf98737853152b79cf (diff) |
Fix includes.
Diffstat (limited to 'plugingui/image.cc')
-rw-r--r-- | plugingui/image.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugingui/image.cc b/plugingui/image.cc index 52c5c9f..3cefbb3 100644 --- a/plugingui/image.cc +++ b/plugingui/image.cc @@ -28,6 +28,7 @@ #include <cstring> #include <cstdint> +#include <cstdlib> #include <hugin.hpp> @@ -49,7 +50,7 @@ Image::Image(const std::string& filename) Image::~Image() { - free(image_data); + std::free(image_data); } void Image::setError() @@ -70,7 +71,7 @@ void Image::setError() _height = ih; size_t image_size = rc.size() - (sizeof(iw) + sizeof(ih)); - image_data = (unsigned char*)malloc(image_size); + image_data = (unsigned char*)std::malloc(image_size); memcpy(image_data, p, image_size); } |