aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-07-06 22:36:26 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2015-07-06 22:36:26 +1200
commita1eb346eb16820b69f8f0a23ef27deb0b8f96ec7 (patch)
treeffd1f5f198fc6e622aa11b5b32ec52a1e1e41613
parent0bfcc2118254ed640a897699e28fd34f2ba9ec68 (diff)
downloadcue-bin-split-a1eb346eb16820b69f8f0a23ef27deb0b8f96ec7.tar.xz
Fixed issue with tiny buffer, since custom format was introduced
-rw-r--r--cue-bin-split.c2
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;