mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 05:10:29 -04:00
This fixes several security vulnerabilities and unexpires the port because it moves to Python 3. PR: 241347 Submitted by: lukas.slebodnik@intrak.sk (initial patch) MFH: 2020Q4 Security: CVE-2018-16838 Security: CVE-2019-3811
16 lines
465 B
C
16 lines
465 B
C
diff --git src/confdb/confdb.c src/confdb/confdb.c
|
|
index e55f88e4e..81fd3417a 100644
|
|
--- src/confdb/confdb.c
|
|
+++ src/confdb/confdb.c
|
|
@@ -28,6 +28,11 @@
|
|
#include "util/strtonum.h"
|
|
#include "db/sysdb.h"
|
|
|
|
+char *strchrnul(const char *s, int ch) {
|
|
+ char *ret = strchr(s, ch);
|
|
+ return ret == NULL ? discard_const_p(char, s) + strlen(s) : ret;
|
|
+}
|
|
+
|
|
#define CONFDB_ZERO_CHECK_OR_JUMP(var, ret, err, label) do { \
|
|
if (!var) { \
|
|
ret = err; \
|