diff options
author | Thomas Wouters <thomas@python.org> | 2006-03-01 22:45:36 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2006-03-01 22:45:36 (GMT) |
commit | 3ffa59b137a0c1f80b5fd495cc3d25d4ef21e0c0 (patch) | |
tree | 93be57d8395938d5710f610d4cac5a28c9bfc9cd /Modules/linuxaudiodev.c | |
parent | 7464b43e41acb08f02f3b7ec2db12747737952d1 (diff) | |
download | cpython-3ffa59b137a0c1f80b5fd495cc3d25d4ef21e0c0.zip cpython-3ffa59b137a0c1f80b5fd495cc3d25d4ef21e0c0.tar.gz cpython-3ffa59b137a0c1f80b5fd495cc3d25d4ef21e0c0.tar.bz2 |
Rework channelnumber/samplesize detetion code's output variables a bit to
convince gcc (4.0.x) the variables are never used uninitialized (and raising
a proper exception if they ever are.)
Diffstat (limited to 'Modules/linuxaudiodev.c')
-rw-r--r-- | Modules/linuxaudiodev.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Modules/linuxaudiodev.c b/Modules/linuxaudiodev.c index f6d5b7d..769451a 100644 --- a/Modules/linuxaudiodev.c +++ b/Modules/linuxaudiodev.c @@ -332,7 +332,6 @@ _ssize(lad_t *self, int *nchannels, int *ssize) default: return -EOPNOTSUPP; } - *nchannels = 0; if (ioctl(self->x_fd, SNDCTL_DSP_CHANNELS, nchannels) < 0) return -errno; return 0; @@ -345,11 +344,11 @@ static PyObject * lad_bufsize(lad_t *self, PyObject *args) { audio_buf_info ai; - int nchannels, ssize; + int nchannels=0, ssize=0; if (!PyArg_ParseTuple(args, ":bufsize")) return NULL; - if (_ssize(self, &nchannels, &ssize) < 0) { + if (_ssize(self, &nchannels, &ssize) < 0 || !ssize || !nchannels) { PyErr_SetFromErrno(LinuxAudioError); return NULL; } @@ -366,12 +365,12 @@ static PyObject * lad_obufcount(lad_t *self, PyObject *args) { audio_buf_info ai; - int nchannels, ssize; + int nchannels=0, ssize=0; if (!PyArg_ParseTuple(args, ":obufcount")) return NULL; - if (_ssize(self, &nchannels, &ssize) < 0) { + if (_ssize(self, &nchannels, &ssize) < 0 || !ssize || !nchannels) { PyErr_SetFromErrno(LinuxAudioError); return NULL; } @@ -389,12 +388,12 @@ static PyObject * lad_obuffree(lad_t *self, PyObject *args) { audio_buf_info ai; - int nchannels, ssize; + int nchannels=0, ssize=0; if (!PyArg_ParseTuple(args, ":obuffree")) return NULL; - if (_ssize(self, &nchannels, &ssize) < 0) { + if (_ssize(self, &nchannels, &ssize) < 0 || !ssize || !nchannels) { PyErr_SetFromErrno(LinuxAudioError); return NULL; } |