Reacted on harmless compiler warnings about allegedly uninitialized variables

This commit is contained in:
Thomas Schmitt 2010-06-20 15:41:06 +02:00
parent 2b2a86ea2e
commit 281462802f
1 changed files with 4 additions and 1 deletions

View File

@ -314,7 +314,9 @@ int create_tree(Ecma119Image *image, IsoNode *iso, Ecma119Node **tree,
}
}
if (!hidden) {
if (hidden) {
max_path= pathlen;
} else {
ret = get_iso_name(image, iso, &iso_name);
if (ret < 0) {
iso_name = NULL; /* invalid, do not free */
@ -405,6 +407,7 @@ int create_tree(Ecma119Image *image, IsoNode *iso, Ecma119Node **tree,
goto ex;
}
}
ret = ISO_SUCCESS;
pos = dir->children;
while (pos) {
int cret;