diff options
author | Max Kellermann <max@duempel.org> | 2008-11-02 20:16:56 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-02 20:16:56 +0100 |
commit | 79d70f124d1116cf5c3a39b64a63a9dd81c224c1 (patch) | |
tree | b03421352820f13523e774517979624952826847 /src/audio.c | |
parent | cc164cc88402bef67b9c12f93fb223450834cc2d (diff) | |
download | mpd-79d70f124d1116cf5c3a39b64a63a9dd81c224c1.tar.gz mpd-79d70f124d1116cf5c3a39b64a63a9dd81c224c1.tar.xz mpd-79d70f124d1116cf5c3a39b64a63a9dd81c224c1.zip |
output: don't allow length==0
Nobody should call playAudio() with an empty chunk. Add some
assertions on that.
Diffstat (limited to '')
-rw-r--r-- | src/audio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/audio.c b/src/audio.c index 953b1a54e..5fb8ab0b9 100644 --- a/src/audio.c +++ b/src/audio.c @@ -228,6 +228,7 @@ bool playAudio(const char *buffer, size_t length) bool ret = false; unsigned int i; + assert(length > 0); /* no partial frames allowed */ assert((length % audio_format_frame_size(&input_audio_format)) == 0); |