blob: 4cf8dc86c5b9cf638fa686d6a4ce22151ccbfce3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- ogg123/vorbis_comments.c.orig 2021-01-07 23:31:25 UTC
+++ ogg123/vorbis_comments.c
@@ -74,7 +74,7 @@ char *lookup_comment_prettyprint (const char *comment,
/* Use default formatting */
j = strcspn(comment, "=");
- if (j) {
+ if (j != strlen(comment)) {
*offset = j + 1;
s = malloc(j + 2);
if (s == NULL) {
|