Browse Source

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 năm trước cách đây
mục cha
commit
92e7e346f3
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  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;
 }