summaryrefslogtreecommitdiff
path: root/playlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'playlist.c')
-rw-r--r--playlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/playlist.c b/playlist.c
index e1d0cce6..f39cddca 100644
--- a/playlist.c
+++ b/playlist.c
@@ -240,7 +240,7 @@ pl_insert_cue_from_buffer (playItem_t *after, const char *fname, const uint8_t *
}
// skip linebreak(s)
while (p - buffer < buffersize && *p < 0x20) {
- *p++;
+ p++;
}
if (p-buffer > 2048) { // huge string, ignore
buffer = p;