aboutsummaryrefslogtreecommitdiffstats
path: root/busybox
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-01-25 16:46:26 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-01-25 16:46:26 +0000
commit4ff87a66385d4e07988d9b356750fb5b15825808 (patch)
tree0a814ff64e38c6232648a14542824bfeef0df3a6 /busybox
parente7d27627fd5a7dec57ca5a069cac9a962b0cce17 (diff)
downloadupstream-4ff87a66385d4e07988d9b356750fb5b15825808.tar.gz
upstream-4ff87a66385d4e07988d9b356750fb5b15825808.tar.bz2
upstream-4ff87a66385d4e07988d9b356750fb5b15825808.zip
oops, applied the ipkg patch with the wrong patchlevel
SVN-Revision: 10253
Diffstat (limited to 'busybox')
-rw-r--r--busybox/patches/525-clean_temp.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/busybox/patches/525-clean_temp.patch b/busybox/patches/525-clean_temp.patch
deleted file mode 100644
index 0c3be747cf..0000000000
--- a/busybox/patches/525-clean_temp.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-diff -urN busybox-1.8.2.old/archival/libipkg/pkg_extract.c busybox-1.8.2.dev/archival/libipkg/pkg_extract.c
---- busybox-1.8.2.old/archival/libipkg/pkg_extract.c 2008-01-23 22:18:44.000000000 +0100
-+++ busybox-1.8.2.dev/archival/libipkg/pkg_extract.c 2008-01-23 22:20:31.000000000 +0100
-@@ -85,6 +85,7 @@
- free(archive->buffer);
- free(archive->accept);
- free(archive);
-+ unlink(name);
- free(name);
-
- return 0;
-@@ -114,6 +115,7 @@
- close(archive->src_fd);
- free(archive);
- free(path);
-+ unlink(name);
- free(name);
-
- return 0;
-@@ -138,6 +140,7 @@
- close(archive->src_fd);
- free(archive);
- free(path);
-+ unlink(name);
- free(name);
-
- return 0;
-@@ -218,6 +221,7 @@
- fputs(archive->buffer, file);
- free(archive->buffer);
- free(archive);
-+ unlink(name);
- free(name);
-
- return 0;