Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Mon, 06 Nov 2023 22:13:09 UTC Commit: 8cad88d72c343fd1091b6dab85ecb226c062a9da https://github.com/geany/geany-plugins/commit/8cad88d72c343fd1091b6dab85ecb2...
Log Message: ----------- geanygendoc: Do not crash if documenting an unknown tag type
Modified Paths: -------------- geanygendoc/src/ggd.c
Modified: geanygendoc/src/ggd.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -208,7 +208,7 @@ get_env_for_tag (GgdFileType *ft, CtplValue *v; GList *tmp = children;
- if (el->type & setting->matches) { + if (type_name && el->type & setting->matches) { v = g_hash_table_lookup (vars, type_name); if (! v) { v = ctpl_value_new_array (CTPL_VTYPE_STRING, 0, NULL);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org