NETIN: save strlens when deserializing network message buffers.
authorWilfried Goesgens <dothebart@citadel.org>
Sat, 8 Jun 2013 15:03:50 +0000 (17:03 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Sat, 8 Jun 2013 15:03:50 +0000 (17:03 +0200)
citadel/modules/network/serv_netspool.c

index 61ccbc992bdbd0847b4d5b0ba538c60f13377dfb..9928c7e4b9f252eec4c9f9831dec5ab3bce9079f 100644 (file)
@@ -395,6 +395,7 @@ void network_spoolout_room(SpoolControl *sc)
  */
 void network_process_buffer(char *buffer, long size, HashList *working_ignetcfg, HashList *the_netmap, int *netmap_changed)
 {
+       long len;
        struct CitContext *CCC = CC;
        StrBuf *Buf = NULL;
        struct CtdlMessage *msg = NULL;
@@ -433,8 +434,10 @@ void network_process_buffer(char *buffer, long size, HashList *working_ignetcfg,
 
        for (pos = 3; pos < size; ++pos) {
                field = buffer[pos];
-               msg->cm_fields[field] = strdup(&buffer[pos+1]);
-               pos = pos + strlen(&buffer[(int)pos]);
+               len = strlen(buffer + pos + 1);
+               msg->cm_fields[field] = malloc(len + 1);
+               memcpy (msg->cm_fields[field], buffer+ pos + 1, len + 1);
+               pos = pos + len + 1;
        }
 
        /* Check for message routing */