Browse Source

Merge pull request #1200 from mbanusic/patch-1

Fix to add null pointer in vips_copy method arguments
Sergey Alexandrovich 1 year ago
parent
commit
b4ee0ceb3e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vips/vips.c

+ 1 - 1
vips/vips.c

@@ -244,7 +244,7 @@ vips_fix_float_tiff(VipsImage *in, VipsImage **out) {
   )
   )
     return vips_fix_BW_float_tiff(in, out);
     return vips_fix_BW_float_tiff(in, out);
 
 
-  return vips_copy(in, out);
+  return vips_copy(in, out, NULL);
 }
 }
 
 
 int
 int