You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gumbo: Make sure to use the char* pointer as the hashmap item (#3524)
**What problem is this PR intended to solve?**
Previously we were passing a character string of variable length, but
always copying 8 bytes into the item. It's not really a problem if the
length of the string is less than 8, but it's more serious if the length
is longer than 8.
Fixes#3500Fixes#3508
**Have you included adequate test coverage?**
I've added test coverage that will fail under valgrind.
**Does this change affect the behavior of either the C or the Java
implementations?**
The issue is only with the C (gumbo) implementation.
0 commit comments