relocate packages on recipes-base/recipes-enigma2/recipes-wlan.
[vuplus_openvuplus] / meta-openvuplus / recipes-base / autofs / autofs-4.1.4 / 062_fix_memory_leak.patch
diff --git a/meta-openvuplus/recipes-base/autofs/autofs-4.1.4/062_fix_memory_leak.patch b/meta-openvuplus/recipes-base/autofs/autofs-4.1.4/062_fix_memory_leak.patch
deleted file mode 100644 (file)
index 1ba0cea..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh /usr/share/dpatch/dpatch-run
-## 062_fix_memory_leak.dpatch
-##
-## DP: No description.
-
-@DPATCH@
-
-diff -Naur .B/modules/mount_nfs.c .A/modules/mount_nfs.c
---- .B/modules/mount_nfs.c     2007-01-07 21:36:35.000000000 +0000
-+++ .A/modules/mount_nfs.c     2007-01-07 21:36:35.000000000 +0000
-@@ -145,16 +145,20 @@
-       he = gethostbyname(hostname);
-       if (!he) {
-               error(MODPREFIX "host %s: lookup failure", hostname);
-+              free(hostname);
-               return -1;
-       }
-       for (haddr = he->h_addr_list; *haddr; haddr++) {
-               local = is_local_addr(hostname, *haddr, he->h_length);
--              if (local < 0) 
-+              if (local < 0) {
-+                      free(hostname);
-                       return local;
-+              }
-               if (local) {
-                       debug(MODPREFIX "host %s: is localhost",
-                                       hostname);
-+                      free(hostname);
-                       return local;
-               }
-       }