You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/combine_wave/files/combine_wave-0.3.1-overflow...

25 lines
765 B

--- a/combine_wave.c
+++ b/combine_wave.c
@@ -601,9 +601,9 @@ for(i = 0; i < header_size; i++)
*ptr = 0;
ptr++;
}
-strcpy(out_header -> main_chunk, "RIFF");
-strcpy(out_header -> chunk_type, "WAVE");
-strcpy(out_header -> sub_chunk, "fmt ");
+memcpy(out_header -> main_chunk, "RIFF", 4);
+memcpy(out_header -> chunk_type, "WAVE", 4);
+memcpy(out_header -> sub_chunk, "fmt ", 4);
out_header -> length_chunk = 16; //always 16
out_header -> format = 1; //PCM
@@ -622,7 +622,7 @@ else
out_header -> sample_fq = left_header -> sample_fq;
out_header -> bit_p_spl = 16; // left_header -> bit_p_spl;
-strcpy(out_header -> data_chunk, "data");
+memcpy(out_header -> data_chunk, "data", 4);
if(right_header -> data_length > left_header -> data_length)
{