summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-env.h
diff options
context:
space:
mode:
authorGravatar mrcsys2006-01-27 20:23:39 +0000
committerGravatar mrcsys2006-01-27 20:23:39 +0000
commit313e3f2e656110cd4b67d526df04d9cb3afee1e7 (patch)
treef8d5308f28ab185406cce0785aeea8c110eb9b6e /libcsoap/soap-env.h
parentd2de034d35e290f68e25f33f19e5e11f5baddeca (diff)
downloadcsoap-313e3f2e656110cd4b67d526df04d9cb3afee1e7.tar.gz
csoap-313e3f2e656110cd4b67d526df04d9cb3afee1e7.tar.bz2
Fixed two buffer overflow problems.
This results in different deffinitions for soap_env_find_urn() and soap_env_find_methodname()
Diffstat (limited to 'libcsoap/soap-env.h')
-rw-r--r--libcsoap/soap-env.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcsoap/soap-env.h b/libcsoap/soap-env.h
index 72dd999..36305e1 100644
--- a/libcsoap/soap-env.h
+++ b/libcsoap/soap-env.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: soap-env.h,v 1.11 2006/01/10 11:29:04 snowdrop Exp $
+ * $Id: soap-env.h,v 1.12 2006/01/27 20:23:40 mrcsys Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -326,8 +326,8 @@ xmlNodePtr soap_env_get_fault(SoapEnv * env);
xmlNodePtr soap_env_get_header(SoapEnv * env);
-int soap_env_find_urn(SoapEnv * env, char *urn);
-int soap_env_find_methodname(SoapEnv * env, char *methodname);
+char * soap_env_find_urn(SoapEnv * env);
+char * soap_env_find_methodname(SoapEnv * env);