libustcomm: fix segfault caused by incorrect initialization of buffer size
authorPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Wed, 17 Feb 2010 17:21:01 +0000 (12:21 -0500)
committerPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Wed, 17 Feb 2010 17:21:01 +0000 (12:21 -0500)
libustcomm/ustcomm.c

index e1a2d5b9554425283b04a283d93403a5d846ff96..0d2ab339485cb666ba033b24d9896840a7d1c311 100644 (file)
@@ -157,11 +157,12 @@ int ustcomm_request_consumer(pid_t pid, const char *channel)
 }
 
 /* returns 1 to indicate a message was received
- * returns 0 to indicate no message was received (cannot happen)
+ * returns 0 to indicate no message was received (end of stream)
  * returns -1 to indicate an error
  */
 
 #define RECV_INCREMENT 1
+#define RECV_INITIAL_BUF_SIZE 10
 
 static int recv_message_fd(int fd, char **msg)
 {
@@ -170,13 +171,20 @@ static int recv_message_fd(int fd, char **msg)
        char *buf = NULL;
        int buf_used_size = 0;
 
-       buf = malloc(10);
-       buf_alloc_size = 16;
+       buf = malloc(RECV_INITIAL_BUF_SIZE);
+       buf_alloc_size = RECV_INITIAL_BUF_SIZE;
 
        for(;;) {
                if(buf_used_size + RECV_INCREMENT > buf_alloc_size) {
+                       char *new_buf;
                        buf_alloc_size *= 2;
-                       buf = (char *) realloc(buf, buf_alloc_size);
+                       new_buf = (char *) realloc(buf, buf_alloc_size);
+                       if(new_buf == NULL) {
+                               ERR("realloc returned NULL");
+                               free(buf);
+                               return -1;
+                       }
+                       buf = new_buf;
                }
 
                /* FIXME: this is really inefficient; but with count>1 we would
@@ -197,7 +205,6 @@ static int recv_message_fd(int fd, char **msg)
                        }
                }
 
-
                buf_used_size += result;
 
                if(buf[buf_used_size-1] == 0) {
This page took 0.02478 seconds and 4 git commands to generate.