ports/security/sssd/files/patch-src__confdb__confdb.c
Rene Ladan 195affec9d security/sssd: update to 1.16.5
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
2020-11-17 20:42:16 +00:00

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; \