diff options
author | snowdrop | 2004-08-30 13:22:04 +0000 |
---|---|---|
committer | snowdrop | 2004-08-30 13:22:04 +0000 |
commit | 295147a45091769563551a26c79a06abbe5f4dc9 (patch) | |
tree | ad751d2c0e2c19e7654c97b41a9ddb3d3652191f /libcsoap | |
parent | 632b4b8564290bae074cf95ca91b90256101fd9d (diff) | |
download | csoap-295147a45091769563551a26c79a06abbe5f4dc9.tar.gz csoap-295147a45091769563551a26c79a06abbe5f4dc9.tar.bz2 |
bugfix in soap_server_entry()
Diffstat (limited to 'libcsoap')
-rw-r--r-- | libcsoap/soap-server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcsoap/soap-server.c b/libcsoap/soap-server.c index e4a5775..f6fc08f 100644 --- a/libcsoap/soap-server.c +++ b/libcsoap/soap-server.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: soap-server.c,v 1.3 2004/08/26 17:06:18 rans Exp $ +* $Id: soap-server.c,v 1.4 2004/08/30 13:22:04 snowdrop Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -103,7 +103,7 @@ void soap_server_destroy() void soap_server_entry(httpd_conn_t *conn, hrequest_t *req) { - hpair_t *header; + hpair_t *header = NULL; char *postdata; char buffer[1054]; char urn[150]; |