[xiph-cvs] cvs commit: ices/src audio.c

Karl Heyes karl at xiph.org
Fri Aug 1 15:38:04 PDT 2003



karl        03/08/01 18:38:04

  Modified:    src      audio.c
  Log:
  fix silly bad pointer bug

Revision  Changes    Path
1.10      +2 -2      ices/src/audio.c

Index: audio.c
===================================================================
RCS file: /usr/local/cvsroot/ices/src/audio.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- audio.c	22 Mar 2003 02:27:55 -0000	1.9
+++ audio.c	1 Aug 2003 22:38:04 -0000	1.10
@@ -2,7 +2,7 @@
  * stereo->mono downmixing
  * resampling
  *
- * $Id: audio.c,v 1.9 2003/03/22 02:27:55 karl Exp $
+ * $Id: audio.c,v 1.10 2003/08/01 22:38:04 karl Exp $
  *
  * Copyright (c) 2001 Michael Smith <msmith at labyrinth.net.au>
  *
@@ -139,7 +139,7 @@
         }
         if(s->convbuf) {
             for(c=0; c<s->channels; c++)
-                if (s->buffers[c])
+                if (s->convbuf[c])
                     free(s->convbuf[c]);
             free(s->convbuf);
         }

<p><p>--- >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