Fix rule deletion (hinfo pointer initialized by kernel, don't compare it in userspace). (Samuel Jean)
diff --git a/extensions/libipt_hashlimit.c b/extensions/libipt_hashlimit.c
index 3ed8c58..1df36b4 100644
--- a/extensions/libipt_hashlimit.c
+++ b/extensions/libipt_hashlimit.c
@@ -355,8 +355,7 @@
 	.name		= "hashlimit",
 	.version	= IPTABLES_VERSION,
 	.size		= IPT_ALIGN(sizeof(struct ipt_hashlimit_info)),
-	.userspacesize	= IPT_ALIGN(sizeof(struct ipt_hashlimit_info)),
-    	//offsetof(struct ipt_hashlimit_info, prev),
+	.userspacesize	= offsetof(struct ipt_hashlimit_info, hinfo),
 	.help		= &help,
 	.init		= &init,
 	.parse		= &parse,