diff options
-rw-r--r-- | backend/epub/epub-document.c | 4 | ||||
-rw-r--r-- | cut-n-paste/synctex/synctex_parser_utils.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/backend/epub/epub-document.c b/backend/epub/epub-document.c index 81d10282..5ea595ff 100644 --- a/backend/epub/epub-document.c +++ b/backend/epub/epub-document.c @@ -1216,9 +1216,9 @@ setup_document_index(EpubDocument *epub_document,gchar *containeruri) //Apparently, sometimes authors don't even care to add a TOC!! Guess standards are just guidelines. - if (tocfilename == NULL) - { + if (tocfilename == NULL) { //We didn't even find a nav file.The document has no TOC. + g_string_free(tocpath,TRUE); return NULL; } diff --git a/cut-n-paste/synctex/synctex_parser_utils.c b/cut-n-paste/synctex/synctex_parser_utils.c index 0aef5777..e21cfa90 100644 --- a/cut-n-paste/synctex/synctex_parser_utils.c +++ b/cut-n-paste/synctex/synctex_parser_utils.c @@ -255,6 +255,7 @@ char * _synctex_merge_strings(const char * first,...) { size_t len = strlen(temp); if(UINT_MAX-len<size) { _synctex_error("! _synctex_merge_strings: Capacity exceeded."); + va_end(arg); return NULL; } size+=len; @@ -275,6 +276,7 @@ char * _synctex_merge_strings(const char * first,...) { _synctex_error("! _synctex_merge_strings: Copy problem"); free(result); result = NULL; + va_end(arg); return NULL; } dest += size; |