[xiph-cvs] cvs commit: icecast/src refbuf.c

Michael Smith msmith at xiph.org
Mon Mar 3 05:09:47 PST 2003



msmith      03/03/03 08:09:47

  Modified:    src      refbuf.c
  Log:
  doh! This one compiles.

Revision  Changes    Path
1.5       +2 -2      icecast/src/refbuf.c

Index: refbuf.c
===================================================================
RCS file: /usr/local/cvsroot/icecast/src/refbuf.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- refbuf.c	3 Mar 2003 13:04:34 -0000	1.4
+++ refbuf.c	3 Mar 2003 13:09:47 -0000	1.5
@@ -63,12 +63,12 @@
 
         if (*queue == NULL) {
                 *queue = item;
-        (*queue)->total_length = item->len;
+        (*queue)->total_length = item->refbuf->len;
         } else {
                 node = *queue;
                 while (node->next) node = node->next;
                 node->next = item;
-        (*queue)->total_length += item->len;
+        (*queue)->total_length += item->refbuf->len;
         }
 }
 

<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