aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/id3v2_extractor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/id3v2_extractor.c')
-rw-r--r--src/plugins/id3v2_extractor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/id3v2_extractor.c b/src/plugins/id3v2_extractor.c
index f0227f1..c852423 100644
--- a/src/plugins/id3v2_extractor.c
+++ b/src/plugins/id3v2_extractor.c
@@ -347,7 +347,8 @@ EXTRACTOR_id3v2_extract (const unsigned char *data,
347 return 1; 347 return 1;
348 } 348 }
349 } 349 }
350 free (word); 350 if (word != NULL)
351 free (word);
351 break; 352 break;
352 } 353 }
353 i++; 354 i++;