Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
deepin-anything (7.0.32) unstable; urgency=medium

* fix: Fix deepin-anything-daemon coredump

-- wangrong <wangrong@uniontech.com> Tue, 11 Nov 2025 21:09:59 +0800

deepin-anything (7.0.31) unstable; urgency=medium

* fix: Fix deepin-anything-daemon coredump
Expand Down
1 change: 1 addition & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

export DH_VERBOSE=1
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
export DEB_LDFLAGS_APPEND = -Wl,-z,now

%:
dh $@ --parallel --with dkms,systemd
Expand Down
2 changes: 1 addition & 1 deletion src/daemon/src/core/file_index_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ file_index_manager::file_index_manager(const std::string& persistent_index_dir,
} catch (const LuceneException& e) {
std::string error_msg = "Failed to initialize file_index_manager: " + StringUtils::toUTF8(e.getError());
spdlog::critical(error_msg);
throw std::runtime_error(error_msg);
exit(APP_QUIT_CODE);
}
}

Expand Down