dankogai / p5-encode

Encode - character encodings (for Perl 5.8 or better)
https://metacpan.org/release/Encode
37 stars 51 forks source link

protect do_encode from NULL dst #135

Closed rurban closed 6 years ago

rurban commented 6 years ago

which would end up in an illegal memcmp(NULL, term, tlen). One could think of malloc dst then, but not for now.

dankogai commented 6 years ago

Thank you!