Displaying 1 result from an estimated 1 matches for "free_hash".
Did you mean:
free_shash
2004 Dec 03
2
INITRAMFS: allow no trailer
...54:02.778579302 -0600
+++ gr_work-miltonm/init/initramfs.c 2004-12-03 16:54:02.789577561 -0600
@@ -241,10 +241,9 @@ static __initdata int wfd;
static int __init do_name(void)
{
state = SkipIt;
- next_state = Start;
+ next_state = Reset;
if (strcmp(collected, "TRAILER!!!") == 0) {
free_hash();
- next_state = Reset;
return 0;
}
if (dry_run)
@@ -295,7 +294,7 @@ static int __init do_symlink(void)
sys_symlink(collected + N_ALIGN(name_len), collected);
sys_lchown(collected, uid, gid);
state = SkipIt;
- next_state = Start;
+ next_state = Reset;
return 0;
}
@@ -331,6 +330,...