Browse Source

process_pipeline: Drop unnecessary malloc

Sebastian Krzyszkowiak 3 years ago
parent
commit
b29f04c05d
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/process_pipeline.c

+ 0 - 2
src/process_pipeline.c

@@ -435,11 +435,9 @@ process_image_for_capture(const uint8_t *image, int count)
 	TIFFCheckpointDirectory(tif);
 	printf("Writing frame to %s\n", fname);
 
-	unsigned char *pLine = (unsigned char *)malloc(mp_pixel_format_width_to_bytes(mode.pixel_format, mode.width));
 	for (int row = 0; row < mode.height; row++) {
 		TIFFWriteScanline(tif, (void *) image + (row * mp_pixel_format_width_to_bytes(mode.pixel_format, mode.width)), row, 0);
 	}
-	free(pLine);
 	TIFFWriteDirectory(tif);
 
 	// Add an EXIF block to the tiff