From 81ab6fd6e82b4ce3185537a66ca97ab3212b6452 Mon Sep 17 00:00:00 2001 From: Rui Matos Date: Mon, 6 Jan 2014 13:45:00 +0000 Subject: [PATCH] CVE-2014-0027_unsafe_temporary_file Gbp-Pq: Name CVE-2014-0027_unsafe_temporary_file.patch --- src/audio/auserver.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/audio/auserver.c b/src/audio/auserver.c index 800c27d..cfcad7d 100644 --- a/src/audio/auserver.c +++ b/src/audio/auserver.c @@ -67,9 +67,11 @@ static int play_wave_from_socket(snd_header *header,int audiostream) int q,i,n,r; unsigned char bytes[CST_AUDIOBUFFSIZE]; short shorts[CST_AUDIOBUFFSIZE]; +#ifdef DEBUG cst_file fff; fff = cst_fopen("/tmp/awb.wav",CST_OPEN_WRITE|CST_OPEN_BINARY); +#endif if ((audio_device = audio_open(header->sample_rate,1, (header->encoding == CST_SND_SHORT) ? @@ -116,7 +118,9 @@ static int play_wave_from_socket(snd_header *header,int audiostream) for (q=r; q > 0; q-=n) { n = audio_write(audio_device,shorts,q); +#ifdef DEBUG cst_fwrite(fff,shorts,2,q); +#endif if (n <= 0) { audio_close(audio_device); @@ -125,7 +129,9 @@ static int play_wave_from_socket(snd_header *header,int audiostream) } } audio_close(audio_device); +#ifdef DEBUG cst_fclose(fff); +#endif return CST_OK_FORMAT;