summaryrefslogtreecommitdiff
path: root/user/chelf/fix-uninitialised-read.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-04-15 18:58:20 +0000
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-04-15 18:58:20 +0000
commit5b19f86f4628148c8439576c68070e4f1d199afc (patch)
tree75921fe7e095ba2fb9cf032eba9a444d9492758a /user/chelf/fix-uninitialised-read.patch
parentee8fc1dfc3eeec9493ba29dcb7d576777fcb2f15 (diff)
downloadpackages-5b19f86f4628148c8439576c68070e4f1d199afc.tar.gz
packages-5b19f86f4628148c8439576c68070e4f1d199afc.tar.bz2
packages-5b19f86f4628148c8439576c68070e4f1d199afc.tar.xz
packages-5b19f86f4628148c8439576c68070e4f1d199afc.zip
user/chelf: bump to 0.2.2
Diffstat (limited to 'user/chelf/fix-uninitialised-read.patch')
-rw-r--r--user/chelf/fix-uninitialised-read.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/user/chelf/fix-uninitialised-read.patch b/user/chelf/fix-uninitialised-read.patch
deleted file mode 100644
index 0623647fe..000000000
--- a/user/chelf/fix-uninitialised-read.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- chelf-0.1_git20190110/main.c.old 2018-10-29 10:37:25.000000000 +0000
-+++ chelf-0.1_git20190110/main.c 2019-01-10 18:44:45.320000000 +0000
-@@ -32,7 +32,7 @@
- {
- int fd, rv = -1;
- struct stat st;
-- void *elf;
-+ void *elf = NULL;
- const int open_flags = (mode == MODE_WRITE) ? O_RDWR : O_RDONLY;
- const int mmap_flags = (mode == MODE_WRITE) ?
- (PROT_WRITE|PROT_READ) : PROT_READ;