aboutsummaryrefslogtreecommitdiffstats
path: root/package/system/opkg/patches/270-fix-use-after-free.patch
Commit message (Collapse)AuthorAgeFilesLines
* opkg: switch to own fork to improve memory usageJo-Philipp Wich2017-02-191-11/+0
| | | | | | | | | | Switch to our own fork of opkg to significantly reduce the required amount of memory when updating lists or installing packages. Preliminary tests showed a usage drop of about 90% during these operations, from ~3.7MB with unmodified opkg to ~360KB with our custom fork. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* opkg: fix use-after-free with duplicate packages on the command lineJo-Philipp Wich2016-04-231-0/+11
When the same package file is specified multiple times on the opkg install command line, the name pointer on the argv array becomes stale after the package structures have been merged, leading to invalid memory accesses upon install. Signed-off-by: Jo-Philipp Wich <jo@mein.io>