aboutsummaryrefslogtreecommitdiff
path: root/src/tool_writeout.c
diff options
context:
space:
mode:
authorMarc Hoersken <info@marc-hoersken.de>2014-04-19 00:24:25 +0200
committerMarc Hoersken <info@marc-hoersken.de>2014-04-19 00:24:25 +0200
commit89390f35f8fe1948e829e5e0d1b10c74bb460629 (patch)
treefcbdc525fa70cd4394c2a60bbd26eb0fb74e13a2 /src/tool_writeout.c
parentda900ca9703c93f356f7eb93385a9f9422b707d4 (diff)
downloadgnurl-89390f35f8fe1948e829e5e0d1b10c74bb460629.tar.gz
gnurl-89390f35f8fe1948e829e5e0d1b10c74bb460629.tar.bz2
gnurl-89390f35f8fe1948e829e5e0d1b10c74bb460629.zip
tool_writeout.c: initialize string pointer variable
Diffstat (limited to 'src/tool_writeout.c')
-rw-r--r--src/tool_writeout.c2
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;