X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fmagick_image_proxy.cc;h=41aede6130d420b63dcc29ae843b9850dc55ce94;hb=99428af22969a6cfb1dbd2053a9356bb23b3182f;hp=e4417f3665e85d0e15163bd0ffccde7b1fa2f23b;hpb=f213fd833a840fc97e3875979ae7dc7cbbc883b1;p=dcpomatic.git diff --git a/src/lib/magick_image_proxy.cc b/src/lib/magick_image_proxy.cc index e4417f366..41aede613 100644 --- a/src/lib/magick_image_proxy.cc +++ b/src/lib/magick_image_proxy.cc @@ -36,19 +36,19 @@ using boost::dynamic_pointer_cast; MagickImageProxy::MagickImageProxy (boost::filesystem::path path) { /* Read the file into a Blob */ - + boost::uintmax_t const size = boost::filesystem::file_size (path); FILE* f = fopen_boost (path, "rb"); if (!f) { throw OpenFileError (path); } - + uint8_t* data = new uint8_t[size]; if (fread (data, 1, size, f) != size) { delete[] data; throw ReadFileError (path); } - + fclose (f); _blob.update (data, size); delete[] data; @@ -66,6 +66,8 @@ MagickImageProxy::MagickImageProxy (shared_ptr, shared_ptr s shared_ptr MagickImageProxy::image (optional) const { + boost::mutex::scoped_lock lm (_mutex); + if (_image) { return _image; } @@ -108,7 +110,7 @@ MagickImageProxy::image (optional) const using namespace MagickCore; #else using namespace MagickLib; -#endif +#endif magick_image->write (0, i, size.width, 1, "RGB", CharPixel, p); p += _image->stride()[0]; } @@ -142,6 +144,6 @@ MagickImageProxy::same (shared_ptr other) const if (_blob.length() != mp->_blob.length()) { return false; } - + return memcmp (_blob.data(), mp->_blob.data(), _blob.length()) == 0; }