Sfoglia il codice sorgente

strdup: Removed irrelevant comment

...as Curl_memdup() duplicates an area of fix size memory, that may be
binary, and not a null terminated string.
Steve Holme 9 anni fa
parent
commit
92e7e346f3
1 ha cambiato i file con 0 aggiunte e 1 eliminazioni
  1. 0 1
      lib/strdup.c

+ 0 - 1
lib/strdup.c

@@ -69,6 +69,5 @@ char *Curl_memdup(const char *src, size_t length)
 
   memcpy(buffer, src, length);
 
-  /* if length unknown do null termination */
   return buffer;
 }