Merge pull request #2447 from philsmd/master

rule engine: add zero-length check for rule 'z'
pull/2449/head
Jens Steube 4 years ago committed by GitHub
commit 5c3a3137b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -518,6 +518,7 @@ DECLSPEC int mangle_dupechar_first (MAYBE_UNUSED const u8 p0, MAYBE_UNUSED const
{
const int out_len = len + p0;
if (len == 0) return (len);
if (out_len >= RP_PASSWORD_SIZE) return (len);
const u8 c = buf[0];

Loading…
Cancel
Save