summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--audio/wavaudio.c4
-rw-r--r--audio/wavcapture.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/audio/wavaudio.c b/audio/wavaudio.c
index c359fc4f2b..a552b7e973 100644
--- a/audio/wavaudio.c
+++ b/audio/wavaudio.c
@@ -151,7 +151,7 @@ static int wav_init_out (HWVoiceOut *hw, audsettings_t *as)
     le_store (hdr + 28, hw->info.freq << (bits16 + stereo), 4);
     le_store (hdr + 32, 1 << (bits16 + stereo), 2);
 
-    wav->f = fopen (conf.wav_path, "wb");
+    wav->f = qemu_fopen (conf.wav_path, "wb");
     if (!wav->f) {
         dolog ("Failed to open wave file `%s'\nReason: %s\n",
                conf.wav_path, strerror (errno));
@@ -185,7 +185,7 @@ static void wav_fini_out (HWVoiceOut *hw)
     qemu_fseek (wav->f, 32, SEEK_CUR);
     qemu_put_buffer (wav->f, dlen, 4);
 
-    fclose (wav->f);
+    qemu_fclose (wav->f);
     wav->f = NULL;
 
     qemu_free (wav->pcm_buf);
diff --git a/audio/wavcapture.c b/audio/wavcapture.c
index 0f6f7bf016..d1a6f7ba78 100644
--- a/audio/wavcapture.c
+++ b/audio/wavcapture.c
@@ -46,7 +46,7 @@ static void wav_destroy (void *opaque)
 
     qemu_fseek (wav->f, 32, SEEK_CUR);
     qemu_put_buffer (wav->f, dlen, 4);
-    fclose (wav->f);
+    qemu_fclose (wav->f);
     if (wav->path) {
         qemu_free (wav->path);
     }
@@ -135,7 +135,7 @@ int wav_start_capture (CaptureState *s, const char *path, int freq,
     le_store (hdr + 28, freq << shift, 4);
     le_store (hdr + 32, 1 << shift, 2);
 
-    wav->f = fopen (path, "wb");
+    wav->f = qemu_fopen (path, "wb");
     if (!wav->f) {
         term_printf ("Failed to open wave file `%s'\nReason: %s\n",
                      path, strerror (errno));