mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
fix compiler warnings
This commit is contained in:
@@ -1800,7 +1800,7 @@ int encode_file(const char *infilename, FLAC__bool is_first_file, FLAC__bool is_
|
||||
if(encode_infile != stdin && grabbag__file_are_same(infilename, outfilename)) {
|
||||
static const char *tmp_suffix = ".tmp,fl-ac+en'c";
|
||||
/*@@@@ still a remote possibility that a file with this filename exists */
|
||||
if(0 == (internal_outfilename = malloc(strlen(outfilename)+strlen(tmp_suffix)+1))) {
|
||||
if(0 == (internal_outfilename = (char *)malloc(strlen(outfilename)+strlen(tmp_suffix)+1))) {
|
||||
flac__utils_printf(stderr, 1, "ERROR allocating memory for tempfile name\n");
|
||||
conditional_fclose(encode_infile);
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user