gnucash stable: Multiple changes pushed

John Ralls jralls at code.gnucash.org
Sun Jun 25 22:50:40 EDT 2023


Updated	 via  https://github.com/Gnucash/gnucash/commit/eefaeb53 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/e0e13604 (commit)
	from  https://github.com/Gnucash/gnucash/commit/0e951339 (commit)



commit eefaeb53ea2030e8a25ce39cc64cfc2582c67e34
Merge: c13f4f713f e0e13604b5
Author: John Ralls <jralls at ceridwen.us>
Date:   Sun Jun 25 19:50:00 2023 -0700

    Merge Vincent Dawans's 'bug798967-cannot-save' into stable.


commit e0e13604b5bda4b2a28c13d77095800243410430
Author: Vincent Dawans <dawansv at gmail.com>
Date:   Sun Jun 25 18:50:58 2023 -0700

    Bug 798967 - Cannot Save to Any Path After Upgrading to 5.2
    Fix inverted if statement condition for save success flag

diff --git a/libgnucash/backend/xml/io-gncxml-v2.cpp b/libgnucash/backend/xml/io-gncxml-v2.cpp
index ab88e5fabb..2615f07d2a 100644
--- a/libgnucash/backend/xml/io-gncxml-v2.cpp
+++ b/libgnucash/backend/xml/io-gncxml-v2.cpp
@@ -1612,7 +1612,7 @@ gnc_book_write_to_xml_file_v2 (QofBook* book, const char* filename,
     /* Optionally wait for parallel compression threads */
     if (thread)
     {
-        if (g_thread_join (thread) != nullptr)
+        if (g_thread_join (thread) == nullptr)
             success = false;
     }
 



Summary of changes:
 libgnucash/backend/xml/io-gncxml-v2.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



More information about the gnucash-changes mailing list