Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2008-02-14 05:32:55 +0300
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2008-02-14 05:32:55 +0300
commita419fa7b5192c92632b77711c99d18f0e39b86d8 (patch)
tree46be274d885e3e4f6fa5f52b73e303c4a6342a64 /src
parent40209cadca72a16907417ea1c0f49ed258caf8aa (diff)
fixed another bug found by gmaxwell's fuzzing (and fixed the previous fix)
git-svn-id: http://svn.xiph.org/trunk/speex@14506 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'src')
-rw-r--r--src/speexdec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/speexdec.c b/src/speexdec.c
index ee21d27..e329c62 100644
--- a/src/speexdec.c
+++ b/src/speexdec.c
@@ -106,7 +106,7 @@ static void print_comments(char *comments, int length)
end = c+length;
len=readint(c, 0);
c+=4;
- if (c+len>end)
+ if (len < 0 || c+len>end)
{
fprintf (stderr, "Invalid/corrupted comments\n");
return;
@@ -130,7 +130,7 @@ static void print_comments(char *comments, int length)
}
len=readint(c, 0);
c+=4;
- if (c+len>end)
+ if (len < 0 || c+len>end)
{
fprintf (stderr, "Invalid/corrupted comments\n");
return;
@@ -365,7 +365,7 @@ static void *process_header(ogg_packet *op, spx_int32_t enh_enabled, spx_int32_t
if (!(*channels==1))
{
- channels = 2;
+ *channels = 2;
callback.callback_id = SPEEX_INBAND_STEREO;
callback.func = speex_std_stereo_request_handler;
callback.data = stereo;