diff --git a/src/process_pipeline.c b/src/process_pipeline.c index 830d2ad..8cec510 100644 --- a/src/process_pipeline.c +++ b/src/process_pipeline.c @@ -429,7 +429,8 @@ process_image_for_capture(const uint8_t *image, int count) TIFFSetField(tif, TIFFTAG_WHITELEVEL, 1, &camera->whitelevel); } if (camera->blacklevel) { - TIFFSetField(tif, TIFFTAG_BLACKLEVEL, 1, &camera->blacklevel); + const float blacklevel = camera->blacklevel; + TIFFSetField(tif, TIFFTAG_BLACKLEVEL, 1, &blacklevel); } TIFFCheckpointDirectory(tif); printf("Writing frame to %s\n", fname);