We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6149562 commit af9c37dCopy full SHA for af9c37d
Core/Libraries/Source/Compression/LZHCompress/NoxCompress.cpp
@@ -47,7 +47,9 @@ Bool DecompressFile (char *infile, char *outfile)
47
// Parameter checking
48
49
if (( infile == NULL ) || ( outfile == NULL ))
50
+ {
51
return FALSE;
52
+ }
53
54
inFilePtr = fopen( infile, "rb" );
55
if ( inFilePtr )
@@ -140,8 +142,6 @@ Bool CompressFile (char *infile, char *outfile)
140
142
141
143
144
{
- if (infile) DbgFree(infile);
- if (outfile) DbgFree(outfile);
145
146
}
147
0 commit comments