summaryrefslogtreecommitdiff
path: root/security/otpw/files/patch-otpw.c
diff options
context:
space:
mode:
Diffstat (limited to 'security/otpw/files/patch-otpw.c')
-rw-r--r--security/otpw/files/patch-otpw.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/security/otpw/files/patch-otpw.c b/security/otpw/files/patch-otpw.c
new file mode 100644
index 000000000000..85e6e77dc402
--- /dev/null
+++ b/security/otpw/files/patch-otpw.c
@@ -0,0 +1,11 @@
+--- otpw.c.orig 2014-08-07 19:21:15 UTC
++++ otpw.c
+@@ -68,7 +68,7 @@ static struct otpw_pwdbuf *otpw_malloc_p
+
+ buflen = sysconf(_SC_GETPW_R_SIZE_MAX); /* typical value: 1024 */
+ /* fprintf(stderr, "_SC_GETPW_R_SIZE_MAX = %ld\n", buflen); */
+- if (buflen < 0) return NULL;
++ if (buflen < 0) buflen = 1024;
+ p = (struct otpw_pwdbuf *) malloc(sizeof(struct otpw_pwdbuf) + buflen);
+ if (p) p->buflen = buflen;
+ return p;