mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:14:05 +02:00
ipkg - free some memory by removing temporary control & data archives after processing
The control and data archives can be removed after processing and gain some memory for another use of the ramdisk or for ipkg needs. Signed-off-by: Lubos Stanek (lubek) <lubek@lubek.name> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10246 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f90cb20b9a
commit
9690839b1f
35
busybox/patches/525-clean_temp.patch
Normal file
35
busybox/patches/525-clean_temp.patch
Normal file
@ -0,0 +1,35 @@
|
||||
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;
|
Loading…
Reference in New Issue
Block a user