[xiph-cvs] r6660 - in icecast/branches/icecast_2_0_x/icecast: . src

oddsock at xiph.org oddsock at xiph.org
Wed May 12 13:07:11 PDT 2004



Author: oddsock
Date: 2004-05-12 16:07:10 -0400 (Wed, 12 May 2004)
New Revision: 6660

Modified:
   icecast/branches/icecast_2_0_x/icecast/configure.in
   icecast/branches/icecast_2_0_x/icecast/src/util.c
Log:
add buffer overflow fix to 2.0.0 codebase
bump version to 2.0.1

<p>Modified: icecast/branches/icecast_2_0_x/icecast/configure.in
===================================================================
--- icecast/branches/icecast_2_0_x/icecast/configure.in	2004-05-12 19:59:00 UTC (rev 6659)
+++ icecast/branches/icecast_2_0_x/icecast/configure.in	2004-05-12 20:07:10 UTC (rev 6660)
@@ -1,4 +1,4 @@
-AC_INIT([Icecast], [2.0.0], [icecast at xiph.org])
+AC_INIT([Icecast], [2.0.1], [icecast at xiph.org])
 
 AC_PREREQ(2.54)
 AC_CONFIG_SRCDIR(src/main.c)

Modified: icecast/branches/icecast_2_0_x/icecast/src/util.c
===================================================================
--- icecast/branches/icecast_2_0_x/icecast/src/util.c	2004-05-12 19:59:00 UTC (rev 6659)
+++ icecast/branches/icecast_2_0_x/icecast/src/util.c	2004-05-12 20:07:10 UTC (rev 6660)
@@ -422,6 +422,7 @@
         vals[3] = base64decode[*input++];
 
         if(vals[0] < 0 || vals[1] < 0 || vals[2] < -1 || vals[3] < -1) {
+            len -= 4;
             continue;
         }
 

--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list