edje: make sure there is an initial value to avoid garbage out.

Detected by clang static analyzer.
This commit is contained in:
Cedric Bail 2013-11-28 16:55:24 +09:00
parent 8e7921dffa
commit 18632bc8c7
1 changed files with 1 additions and 1 deletions

View File

@ -1347,7 +1347,7 @@ _betai(char *s, int *val)
static char *
_alphai(char *s, int *val)
{
int a1, a2;
int a1 = 0, a2 = 0;
char op;
if (!val) return NULL;