summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/escape.c
diff options
context:
space:
mode:
Diffstat (limited to 'Source/CTest/Curl/escape.c')
-rw-r--r--Source/CTest/Curl/escape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/Curl/escape.c b/Source/CTest/Curl/escape.c
index d418e5b..2b9a883 100644
--- a/Source/CTest/Curl/escape.c
+++ b/Source/CTest/Curl/escape.c
@@ -43,7 +43,7 @@ char *curl_escape(const char *string, int inlength)
{
size_t alloc = (inlength?(size_t)inlength:strlen(string))+1;
char *ns;
- char *testing_ptr = NULL;
+ char *testing_ptr;
unsigned char in;
size_t newlen = alloc;
int strindex=0;