]> granicus.if.org Git - curl/commitdiff
Curl_saferealloc: Fixed typo in docblock
authorErik Minekus <tsunami@tsunami-productions.nl>
Fri, 21 Sep 2018 12:20:18 +0000 (14:20 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 21 Sep 2018 12:24:55 +0000 (14:24 +0200)
Closes #3029

lib/strdup.c

index 19cb044162efdd30141bf163b83f068601af7d4b..51e7978b7f136eb0b241c535186b68faa03b4e25 100644 (file)
@@ -81,7 +81,7 @@ void *Curl_memdup(const void *src, size_t length)
  * Curl_saferealloc(ptr, size)
  *
  * Does a normal realloc(), but will free the data pointer if the realloc
- * fails. If 'size' is zero, it will free the data and return a failure.
+ * fails. If 'size' is non-zero, it will free the data and return a failure.
  *
  * This convenience function is provided and used to help us avoid a common
  * mistake pattern when we could pass in a zero, catch the NULL return and end