From a1eb346eb16820b69f8f0a23ef27deb0b8f96ec7 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Mon, 6 Jul 2015 22:36:26 +1200 Subject: Fixed issue with tiny buffer, since custom format was introduced --- cue-bin-split.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.1