Commit 1e60ea76db96fefe3c78511c3cc6bf47bf99c9a6

Philipp Wiesemann 2017-05-28T21:50:27

qnx: Removed unnecessary call to SDL_zerop() after SDL_calloc().

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/audio/qsa/SDL_qsa_audio.c b/src/audio/qsa/SDL_qsa_audio.c
index 7adeb91..e89fb93 100644
--- a/src/audio/qsa/SDL_qsa_audio.c
+++ b/src/audio/qsa/SDL_qsa_audio.c
@@ -357,7 +357,6 @@ QSA_OpenDevice(_THIS, void *handle, const char *devname, int iscapture)
     if (this->hidden == NULL) {
         return SDL_OutOfMemory();
     }
-    SDL_zerop(this->hidden);
 
     /* Initialize channel transfer parameters to default */
     QSA_InitAudioParams(&cparams);