[Commits] [SCM] claws branch, gtk3, updated. 4.0.0-296-g719b65f27

wwp at claws-mail.org wwp at claws-mail.org
Mon Oct 4 10:44:23 CEST 2021


The branch, gtk3 has been updated
       via  719b65f275d4c8a2803ba8f54b35f536df36aaa3 (commit)
      from  b69c0c073f0d257bd49eb17691f1e9959395d66c (commit)

Summary of changes:
 src/filtering.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


- Log -----------------------------------------------------------------
commit 719b65f275d4c8a2803ba8f54b35f536df36aaa3
Author: wwp <subscript at free.fr>
Date:   Mon Oct 4 10:42:58 2021 +0200

    Fix CID 1491157: use after free.

diff --git a/src/filtering.c b/src/filtering.c
index edd0f3a9c..9e1d98158 100644
--- a/src/filtering.c
+++ b/src/filtering.c
@@ -1077,8 +1077,8 @@ static void prefs_filtering_free(GSList * prefs_filtering)
  	while (prefs_filtering != NULL) {
  		FilteringProp * filtering = (FilteringProp *)
 			prefs_filtering->data;
- 		filteringprop_free(filtering);
  		prefs_filtering = g_slist_remove(prefs_filtering, filtering);
+ 		filteringprop_free(filtering);
  	}
 }
 

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list