Version in base suite: 3.63.0-1 Version in overlay suite: 3.63.0-1+deb12u1 Base version: filezilla_3.63.0-1+deb12u1 Target version: filezilla_3.63.0-1+deb12u2 Base file: /srv/ftp-master.debian.org/ftp/pool/main/f/filezilla/filezilla_3.63.0-1+deb12u1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/f/filezilla/filezilla_3.63.0-1+deb12u2.dsc changelog | 6 +++++ patches/0003-crash-when-removing-filetypes-from-list.patch | 14 +++++++++++++ patches/series | 1 3 files changed, 21 insertions(+) diff -Nru filezilla-3.63.0/debian/changelog filezilla-3.63.0/debian/changelog --- filezilla-3.63.0/debian/changelog 2023-08-07 22:58:46.000000000 +0000 +++ filezilla-3.63.0/debian/changelog 2023-08-14 10:48:50.000000000 +0000 @@ -1,3 +1,9 @@ +filezilla (3.63.0-1+deb12u2) bookworm; urgency=medium + + * Add patch: 0003-crash-when-removing-filetypes-from-list.patch (Closes: #1043556) + + -- Phil Wyett Mon, 14 Aug 2023 11:48:50 +0100 + filezilla (3.63.0-1+deb12u1) bookworm; urgency=medium * Fix FTBFS and add 32-bit builds back to bookworm diff -Nru filezilla-3.63.0/debian/patches/0003-crash-when-removing-filetypes-from-list.patch filezilla-3.63.0/debian/patches/0003-crash-when-removing-filetypes-from-list.patch --- filezilla-3.63.0/debian/patches/0003-crash-when-removing-filetypes-from-list.patch 1970-01-01 00:00:00.000000000 +0000 +++ filezilla-3.63.0/debian/patches/0003-crash-when-removing-filetypes-from-list.patch 2023-08-14 10:48:10.000000000 +0000 @@ -0,0 +1,14 @@ +Index: filezilla-3.65.0/src/interface/settings/optionspage_filetype.cpp +=================================================================== +--- filezilla-3.65.0.orig/src/interface/settings/optionspage_filetype.cpp ++++ filezilla-3.65.0/src/interface/settings/optionspage_filetype.cpp +@@ -183,6 +183,9 @@ void COptionsPageFiletype::OnRemove() + int item = -1; + item = impl_->types_->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); + while (item != -1) { ++#ifndef FZ_WINDOWS ++ impl_->types_->SetItemState(item, 0, wxLIST_STATE_SELECTED); ++#endif + impl_->types_->DeleteItem(item); + --item; + item = impl_->types_->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); diff -Nru filezilla-3.63.0/debian/patches/series filezilla-3.63.0/debian/patches/series --- filezilla-3.63.0/debian/patches/series 2023-01-25 09:42:59.000000000 +0000 +++ filezilla-3.63.0/debian/patches/series 2023-08-14 10:47:29.000000000 +0000 @@ -1,3 +1,4 @@ 01_remove-xdg-check.patch # 11_use-decimal-si-by-default.patch 0002-Add-patch-to-not-build-fzshellext.patch +0003-crash-when-removing-filetypes-from-list.patch