diff options
author | Ansuel Smith <ansuelsmth@gmail.com> | 2019-10-08 22:34:11 +0200 |
---|---|---|
committer | Ansuel Smith <ansuelsmth@gmail.com> | 2019-10-10 20:02:30 +0200 |
commit | 535b2b6bd8a7f7a0a7a6914c8091619ea6f8961f (patch) | |
tree | 02b0b153964e1673a5119872d64563f3740af28d /net/cgi-io/Makefile | |
parent | 7a5326dd29fabf2d405603e24159323b4f792759 (diff) |
cgi-io: fix read after end errors
Currently cgi-io try to read data after the data ended.
- Adds "-" to whitelist char
- In main_upload is tried to consume the buffer while it's already readed by the while loop before
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Diffstat (limited to 'net/cgi-io/Makefile')
-rw-r--r-- | net/cgi-io/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/cgi-io/Makefile b/net/cgi-io/Makefile index 211360905..6bc906ec5 100644 --- a/net/cgi-io/Makefile +++ b/net/cgi-io/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cgi-io -PKG_RELEASE:=12 +PKG_RELEASE:=13 PKG_LICENSE:=GPL-2.0-or-later |