diff options
| -rw-r--r-- | cue-bin-split.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/cue-bin-split.c b/cue-bin-split.c index 2189516..9092bc5 100644 --- a/cue-bin-split.c +++ b/cue-bin-split.c @@ -64,7 +64,7 @@ int main(int argc, char **argv)  	/* Misc */  	char opt = 0; -	char out_fname[] = "track-000000000000"; /* That should do it */ +	char out_fname[1024]; /* That should do it. Note: overflow IS caught */  	int track = 0;  	int items = 0;  	int i = 0;  | 
