blob: f1d2cbc5a36ba7ce8d3acb41acb8d64fd15919f6 [file] [log] [blame]
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00001From 078e962d345fd0536fe7ba797485ee1a4159c032 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 4 Feb 2022 09:18:30 -0800
4Subject: [PATCH] Make alpha2 to be 3 characters long
5
6Fixes buffer overflow
7reglib.c:969:9: error: 'sscanf' may overflow; destination buffer in argument 3 has size 2, but the corresponding specifier may require size 3 [-Werror,-Wfortify-source]
8 alpha2,
9 ^
10Upstream-Status: Pending
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 reglib.c | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/reglib.c b/reglib.c
17index e00e9b8..8565a0b 100644
18--- a/reglib.c
19+++ b/reglib.c
20@@ -958,7 +958,7 @@ reglib_parse_rules(FILE *fp, struct ieee80211_regdomain *trd)
21 static int reglib_parse_country_dfs(char *line, struct ieee80211_regdomain *rd)
22 {
23 char dfs_region_alpha[9];
24- char alpha2[2];
25+ char alpha2[3];
26 int hits;
27
28 memset(rd, 0, sizeof(*rd));
29--
302.35.1
31