Snap for 6856668 from db325961118ca9c1b2179698d4c69b568b04470c to rvc-d2-release

Change-Id: I14749dc7ce31e44910f7f0077b4252453a831fc4
diff --git a/libxtables/xtables.c b/libxtables/xtables.c
index 895f698..9c5827e 100644
--- a/libxtables/xtables.c
+++ b/libxtables/xtables.c
@@ -757,6 +757,7 @@
 
 	for (ptr = xtables_targets; ptr; ptr = ptr->next) {
 		if (extension_cmp(name, ptr->name, ptr->family)) {
+#if 0			/* Code block below causes memory leak.  (Bugs 162925719 and 168688680) */
 			struct xtables_target *clone;
 
 			/* First target of this type: */
@@ -772,6 +773,7 @@
 			clone->next = clone;
 
 			ptr = clone;
+#endif
 			break;
 		}
 	}