Commit 5bf02b16 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

curl_free() doesn't free(NULL) but just returns

parent 594cb850
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -126,5 +126,6 @@ char *curl_unescape(const char *string, int length)
   the library's memory system */
void curl_free(void *p)
{
  if(p)
    free(p);
}