[MPlayer-cvslog] r30795 - trunk/stream/stream.h

reimar subversion at mplayerhq.hu
Sun Feb 28 13:54:12 CET 2010


Author: reimar
Date: Sun Feb 28 13:54:12 2010
New Revision: 30795

Log:
Simplify handling of 0-termination in stream_read_line

Modified:
   trunk/stream/stream.h

Modified: trunk/stream/stream.h
==============================================================================
--- trunk/stream/stream.h	Sun Feb 28 12:30:35 2010	(r30794)
+++ trunk/stream/stream.h	Sun Feb 28 13:54:12 2010	(r30795)
@@ -268,6 +268,8 @@ inline static int stream_read(stream_t *
 inline static unsigned char* stream_read_line(stream_t *s,unsigned char* mem, int max) {
   int len;
   unsigned char* end,*ptr = mem;
+  if (max < 1) return NULL;
+  max--; // reserve one for 0-termination
   do {
     len = s->buf_len-s->buf_pos;
     // try to fill the buffer
@@ -276,8 +278,8 @@ inline static unsigned char* stream_read
         (len = s->buf_len-s->buf_pos) <= 0)) break;
     end = (unsigned char*) memchr((void*)(s->buffer+s->buf_pos),'\n',len);
     if(end) len = end - (s->buffer+s->buf_pos) + 1;
-    if(len > 0 && max > 1) {
-      int l = len > max-1 ? max-1 : len;
+    if(len > 0 && max > 0) {
+      int l = len > max ? max : len;
       memcpy(ptr,s->buffer+s->buf_pos,l);
       max -= l;
       ptr += l;
@@ -285,7 +287,7 @@ inline static unsigned char* stream_read
     s->buf_pos += len;
   } while(!end);
   if(s->eof && ptr == mem) return NULL;
-  if(max > 0) ptr[0] = 0;
+  ptr[0] = 0;
   return mem;
 }
 


More information about the MPlayer-cvslog mailing list