]> gitweb.michael.orlitzky.com - libsvgtiny.git/commit
src/svgtiny_css.c: fix uninitalized use in node_is_lang()
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 20 Oct 2024 22:17:52 +0000 (18:17 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 20 Oct 2024 22:17:52 +0000 (18:17 -0400)
commit29e40ed74de9f729755aa45459ff4f770b5be9ca
tree28c794fbc05c1f34b733c9538c1a22ca880aff78
parentdf827c7c51d36da65c096ed714de6fe16b0670df
src/svgtiny_css.c: fix uninitalized use in node_is_lang()

If _node_has_attribute_substring() returns an error before it has a
chance to overwrite the "match" variable with true/false, then we may
try to access "match" while it is uninitialized. We may as well just
initialize it to false (no match) to avoid this corner case.
src/svgtiny_css.c