mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
fix bug with return code passing
This commit is contained in:
@@ -801,7 +801,7 @@ int encode_file(const char *infilename, const char *forced_outfilename, FLAC__bo
|
||||
unlink(infilename);
|
||||
}
|
||||
|
||||
return 0;
|
||||
return retval;
|
||||
}
|
||||
|
||||
int decode_file(const char *infilename, const char *forced_outfilename)
|
||||
@@ -885,5 +885,5 @@ int decode_file(const char *infilename, const char *forced_outfilename)
|
||||
unlink(infilename);
|
||||
}
|
||||
|
||||
return 0;
|
||||
return retval;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user