forked from len0rd/rockbox
no strcpy for codecs
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6061 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
089c5f7957
commit
8cb37d3a54
2 changed files with 6 additions and 6 deletions
|
@ -62,7 +62,7 @@ int unpack_init (WavpackContext *wpc)
|
|||
|
||||
while (read_metadata_buff (wpc, &wpmd)) {
|
||||
if (!process_metadata (wpc, &wpmd)) {
|
||||
strcpy (wpc->error_message, "invalid metadata!");
|
||||
/*strcpy (wpc->error_message, "invalid metadata!");*/
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -71,7 +71,7 @@ int unpack_init (WavpackContext *wpc)
|
|||
}
|
||||
|
||||
if (wps->wphdr.block_samples && !bs_is_open (&wps->wvbits)) {
|
||||
strcpy (wpc->error_message, "invalid WavPack file!");
|
||||
/*strcpy (wpc->error_message, "invalid WavPack file!");*/
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue