diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2017-12-01 16:49:06 +0100 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2017-12-05 11:02:12 -0500 |
commit | 53531cafc4e6fb29eff0f86ede4bcd5b3c5df154 (patch) | |
tree | 50deb2ef630fcda0bd6dbcce771f741631a3c255 /app-forensics/sleuthkit | |
parent | dev-db/percona-server: Rev bump to block package for >gcc-6 (diff) | |
download | gentoo-53531cafc4e6fb29eff0f86ede4bcd5b3c5df154.tar.gz gentoo-53531cafc4e6fb29eff0f86ede4bcd5b3c5df154.tar.bz2 gentoo-53531cafc4e6fb29eff0f86ede4bcd5b3c5df154.zip |
app-forensics/sleuthkit: remove unused patch
Diffstat (limited to 'app-forensics/sleuthkit')
-rw-r--r-- | app-forensics/sleuthkit/files/sleuthkit-4.4.2-c89-fix.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/app-forensics/sleuthkit/files/sleuthkit-4.4.2-c89-fix.patch b/app-forensics/sleuthkit/files/sleuthkit-4.4.2-c89-fix.patch deleted file mode 100644 index 5d4f91e98b9d..000000000000 --- a/app-forensics/sleuthkit/files/sleuthkit-4.4.2-c89-fix.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 7caca2f8be471be337f7aea70cd900164bf070eb Mon Sep 17 00:00:00 2001 -From: Gokturk Yuksek <gokturk@gentoo.org> -Date: Tue, 15 Aug 2017 21:04:24 -0400 -Subject: [PATCH] tsk/img/aff: loop initial declarations are not allowed in C89 - -Declaring an integer inside a for loop as in for(int i;;) is not -allowed in C89 and causes a build failure. Fix it by declaring the -variable just before the for loop. ---- - tsk/img/aff.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/tsk/img/aff.c b/tsk/img/aff.c -index fd9c4ff..a832bfb 100644 ---- a/tsk/img/aff.c -+++ b/tsk/img/aff.c -@@ -216,7 +216,8 @@ aff_close(TSK_IMG_INFO * img_info) - { - IMG_AFF_INFO *aff_info = (IMG_AFF_INFO *) img_info; - af_close(aff_info->af_file); -- for (int i = 0; i < img_info->num_img; i++) { -+ int i; -+ for (i = 0; i < img_info->num_img; i++) { - if (img_info->images[i]) - free(img_info->images[i]); - } --- -2.10.2 - |