Codebase list dmidecode / 389ef95
Drop patch 0145-Fix_condition_error_in_ascii_filter.patch, present upstream. Debian Janitor 2 years ago
3 changed file(s) with 1 addition(s) and 19 deletion(s). Raw diff Collapse all Expand all
00 dmidecode (3.3+git20210921.1.0c1da65-1) UNRELEASED; urgency=low
11
22 * New upstream snapshot.
3 * Drop patch 0145-Fix_condition_error_in_ascii_filter.patch, present upstream.
34
45 -- Debian Janitor <janitor@jelmer.uk> Sat, 16 Oct 2021 01:01:48 -0000
56
+0
-18
debian/patches/0145-Fix_condition_error_in_ascii_filter.patch less more
0 Description: Fix the condition error in ascii_filter
1 Origin: upstream, http://git.savannah.gnu.org/cgit/dmidecode.git/commit/?id=1117390ccd9cea139638db6f460bb6de70e28f94
2 Last-Update: 2021-05-07
3 ---
4 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
5 Index: trunk/dmidecode.c
6 ===================================================================
7 --- trunk.orig/dmidecode.c
8 +++ trunk/dmidecode.c
9 @@ -116,7 +116,7 @@ static void ascii_filter(char *bp, size_
10 size_t i;
11
12 for (i = 0; i < len; i++)
13 - if (bp[i] < 32 || bp[i] == 127)
14 + if (bp[i] < 32 || bp[i] >= 127)
15 bp[i] = '.';
16 }
17
0 0145-Fix_condition_error_in_ascii_filter.patch
10 0150-Fix_crash.patch
21 0100-ansi-c.patch
32 0001-hurd.patch