From 0fe304a4bcbb61b3fba2d8c2302190ea6753e386 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Sun, 22 May 2011 17:08:07 +0000 Subject: [PATCH] E: e_sys_main: Fix 'mp may be used uninitialized' warning. SVN revision: 59601 --- src/bin/e_sys_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_sys_main.c b/src/bin/e_sys_main.c index b7b0d9d3c..8fad45db1 100644 --- a/src/bin/e_sys_main.c +++ b/src/bin/e_sys_main.c @@ -126,8 +126,8 @@ main(int argc, if (mnt) { Eina_Strbuf *buf; - int ret; - const char *mp; + int ret = 0; + const char *mp = NULL; buf = eina_strbuf_new(); if (!buf) goto err;