ports/graphics/pfstools/files/patch-src-fileformat-pfsoutpfm.cpp
Kurt Jaeger e648e1ca79 graphics/pfstools: some fixes
- fixes for octave 4.0
- fixes for netpbm
- submitter becomes maintainer

PR:		206239
Submitted by:	Iouri V. Ivliev <fbsd@any.COM.ru>
Approved by:	darius@dons.net.au (maintainer)
2016-02-13 16:34:57 +00:00

20 lines
705 B
C++

--- src/fileformat/pfsoutpfm.cpp.orig 2005-06-15 13:36:54 UTC
+++ src/fileformat/pfsoutpfm.cpp
@@ -74,7 +74,7 @@ void writePFMFileColor( FILE *fh, int wi
}
int written = fwrite( line, sizeof( float ), lineSize, fh );
if( written != lineSize )
- throw new pfs::Exception( "Unable to write data" );
+ throw pfs::Exception( "Unable to write data" );
}
delete[] line;
}
@@ -94,7 +94,7 @@ void writePFMFileGrayscale( FILE *fh, in
}
int written = fwrite( line, sizeof( float ), lineSize, fh );
if( written != lineSize )
- throw new pfs::Exception( "Unable to write data" );
+ throw pfs::Exception( "Unable to write data" );
}
delete[] line;
}