Index: ip6tables.c =================================================================== --- ip6tables.c (Revision 7492) +++ ip6tables.c (Arbeitskopie) @@ -1393,9 +1393,16 @@ target->t = fw_calloc(1, size); target->t->u.target_size = size; strcpy(target->t->u.user.name, jumpto); + set_revision(target->t->u.user.name, + target->revision); if (target->init != NULL) target->init(target->t); - opts = merge_options(opts, target->extra_opts, &target->option_offset); + opts = merge_options(opts, + target->extra_opts, + &target->option_offset); + if (opts == NULL) + exit_error(OTHER_PROBLEM, + "can't alloc memory!"); } break;