summaryrefslogtreecommitdiff
path: root/apps/codecs/libwavpack/unpack.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwavpack/unpack.c')
-rw-r--r--apps/codecs/libwavpack/unpack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libwavpack/unpack.c b/apps/codecs/libwavpack/unpack.c
index 917f487b20..b9e53203b5 100644
--- a/apps/codecs/libwavpack/unpack.c
+++ b/apps/codecs/libwavpack/unpack.c
@@ -62,7 +62,7 @@ int unpack_init (WavpackContext *wpc)
62 62
63 while (read_metadata_buff (wpc, &wpmd)) { 63 while (read_metadata_buff (wpc, &wpmd)) {
64 if (!process_metadata (wpc, &wpmd)) { 64 if (!process_metadata (wpc, &wpmd)) {
65 strcpy (wpc->error_message, "invalid metadata!"); 65 /*strcpy (wpc->error_message, "invalid metadata!");*/
66 return FALSE; 66 return FALSE;
67 } 67 }
68 68
@@ -71,7 +71,7 @@ int unpack_init (WavpackContext *wpc)
71 } 71 }
72 72
73 if (wps->wphdr.block_samples && !bs_is_open (&wps->wvbits)) { 73 if (wps->wphdr.block_samples && !bs_is_open (&wps->wvbits)) {
74 strcpy (wpc->error_message, "invalid WavPack file!"); 74 /*strcpy (wpc->error_message, "invalid WavPack file!");*/
75 return FALSE; 75 return FALSE;
76 } 76 }
77 77