diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2014-04-19 00:24:25 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2014-04-19 00:24:25 +0200 |
commit | 89390f35f8fe1948e829e5e0d1b10c74bb460629 (patch) | |
tree | fcbdc525fa70cd4394c2a60bbd26eb0fb74e13a2 /src/tool_writeout.c | |
parent | da900ca9703c93f356f7eb93385a9f9422b707d4 (diff) |
tool_writeout.c: initialize string pointer variable
Diffstat (limited to 'src/tool_writeout.c')
-rw-r--r-- | src/tool_writeout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_writeout.c b/src/tool_writeout.c index 3c32067e3..f29d1ac33 100644 --- a/src/tool_writeout.c +++ b/src/tool_writeout.c @@ -103,7 +103,7 @@ void ourWriteOut(CURL *curl, struct OutStruct *outs, const char *writeinfo) { FILE *stream = stdout; const char *ptr = writeinfo; - char *stringp; + char *stringp = NULL; long longinfo; double doubleinfo; |