Fixed broken SUSP handling
This commit is contained in:
parent
9d08c115fd
commit
b7573134cb
@ -251,10 +251,6 @@ create_symlink(struct ecma119_write_target *t,
|
|||||||
assert(t && iso && parent && parent->type == ECMA119_DIR);
|
assert(t && iso && parent && parent->type == ECMA119_DIR);
|
||||||
|
|
||||||
ret = create_ecma119_node(t, parent, (struct iso_tree_node*) iso);
|
ret = create_ecma119_node(t, parent, (struct iso_tree_node*) iso);
|
||||||
ret->iso_name = iso->node.name ? ((t->iso_level == 1) ?
|
|
||||||
iso_1_fileid(iso->node.name, t->input_charset)
|
|
||||||
: iso_2_fileid(iso->node.name, t->input_charset))
|
|
||||||
: NULL;
|
|
||||||
ret->type = ECMA119_SYMLINK;
|
ret->type = ECMA119_SYMLINK;
|
||||||
ret->info.dest = iso->dest; /* TODO strdup? */
|
ret->info.dest = iso->dest; /* TODO strdup? */
|
||||||
ret->attrib.st_nlink = 1;
|
ret->attrib.st_nlink = 1;
|
||||||
|
@ -205,9 +205,7 @@ susp_finalize(struct ecma119_write_target *t, struct ecma119_tree_node *dir)
|
|||||||
|
|
||||||
assert(dir->type = ECMA119_DIR);
|
assert(dir->type = ECMA119_DIR);
|
||||||
|
|
||||||
if (dir->info.dir.depth != 1) {
|
|
||||||
susp_fin_CE(t, dir);
|
susp_fin_CE(t, dir);
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < dir->info.dir.nchildren; i++) {
|
for (i = 0; i < dir->info.dir.nchildren; i++) {
|
||||||
if (dir->info.dir.children[i]->type == ECMA119_DIR)
|
if (dir->info.dir.children[i]->type == ECMA119_DIR)
|
||||||
|
Loading…
Reference in New Issue
Block a user