1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

strdup: Removed irrelevant comment

...as Curl_memdup() duplicates an area of fix size memory, that may be
binary, and not a null terminated string.
This commit is contained in:
Steve Holme 2014-11-05 12:53:06 +00:00
parent e8cea8d70f
commit 92e7e346f3

View File

@ -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;
}