diff options
Diffstat (limited to 'community/iwd/fix-rawmemchr.patch')
-rw-r--r-- | community/iwd/fix-rawmemchr.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/community/iwd/fix-rawmemchr.patch b/community/iwd/fix-rawmemchr.patch new file mode 100644 index 0000000000..5ea018bd34 --- /dev/null +++ b/community/iwd/fix-rawmemchr.patch @@ -0,0 +1,11 @@ +--- a/src/wiphy.c 2019-11-14 21:04:59.000000000 +0100 ++++ b/src/wiphy.c 2019-11-16 21:51:47.458144885 +0100 +@@ -500,7 +500,7 @@ + + if (out_num) + *out_num = +- (uint8_t *) rawmemchr(wiphy->supported_rates[band], 0) - ++ (uint8_t *) strchr(wiphy->supported_rates[band], 0) - + wiphy->supported_rates[band]; + + return wiphy->supported_rates[band]; |