Merge pull request #2447 from philsmd/master

rule engine: add zero-length check for rule 'z'
This commit is contained in:
Jens Steube
2020-06-15 10:01:20 +02:00
committed by GitHub
+1
View File
@@ -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];