1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-03 01:19:24 +02:00

Fix a couple of errors reported by Wipro.

This commit is contained in:
v.audacity 2010-09-13 23:42:21 +00:00
parent 8e94cd5369
commit c3cc10a265
2 changed files with 4 additions and 2 deletions

View File

@ -446,7 +446,7 @@ private void indirect_command(filename, oldarg0)
argv[0] = oldarg0;
argc = 1;
} else {
int i = 1;
int i = 1;
char arg[100];
while (get_arg(argfile, arg)) i++;
fclose(argfile);
@ -460,6 +460,7 @@ private void indirect_command(filename, oldarg0)
strcpy(argv[i], arg);
i++;
}
fclose(argfile);
}
}

View File

@ -58,7 +58,8 @@ private char *chunk_alloc(seq_type seq, int size)
if (size & 1) size++; /* make it even */
if (chunk->free + size >= CHUNK_SIZE) {
chunk_type new_chunk = chunk_create(FALSE);
if (!chunk) {
if (!new_chunk)
{
gprintf(FATAL, "Out of memory while reading seq\n");
return NULL;
}