summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-07-11 15:42:27 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:20:06 -0500
commit3e0aa2e756ec5fb3f03c9029ee442ed0aede5c53 (patch)
tree1e6615499f2bb40468afce58c351809a96e6da81 /source4/lib
parent887461327a93e1677de44438a5e4a1abd5b91f11 (diff)
downloadsamba-3e0aa2e756ec5fb3f03c9029ee442ed0aede5c53.tar.gz
samba-3e0aa2e756ec5fb3f03c9029ee442ed0aede5c53.tar.bz2
samba-3e0aa2e756ec5fb3f03c9029ee442ed0aede5c53.zip
r8321: Fix some uninitalized variable warnings
(This used to be commit 126cb3db4b0cf9c382ba7496ba08311f3b669f00)
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/ejs/var.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ejs/var.c b/source4/lib/ejs/var.c
index 63c0b7b98d..70a277ae73 100644
--- a/source4/lib/ejs/var.c
+++ b/source4/lib/ejs/var.c
@@ -1706,7 +1706,7 @@ void mprVarToString(char** out, int size, char *fmt, MprVar *obj)
MprVar mprParseVar(char *buf, MprType preferredType)
{
- MprType type;
+ MprType type = MPR_TYPE_UNDEFINED;
char *cp;
mprAssert(buf);