summaryrefslogtreecommitdiff
path: root/dpkg-deb
diff options
context:
space:
mode:
authorAdam Heath <doogie@debian.org>2002-09-01 04:47:03 +0000
committerAdam Heath <doogie@debian.org>2002-09-01 04:47:03 +0000
commitd30ba9a6e085d8fe845f394737827fe5ef7c0565 (patch)
tree5b2649b665a652255bd833ae0af6c180f16f9dd7 /dpkg-deb
parentf76ac28071e2ec5c71d3698a56dc203d1b7fd07e (diff)
downloaddpkg-d30ba9a6e085d8fe845f394737827fe5ef7c0565.tar.gz
Don't call nffreeall, in any of the c/c++ programs. It appears dselect
slightly corrupts it's memory enough that it can't be freed without segfaulting.
Diffstat (limited to 'dpkg-deb')
-rw-r--r--dpkg-deb/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dpkg-deb/main.c b/dpkg-deb/main.c
index 54b10618d..dad11cb98 100644
--- a/dpkg-deb/main.c
+++ b/dpkg-deb/main.c
@@ -170,7 +170,7 @@ int main(int argc, const char *const *argv) {
unsetenv("GZIP");
action(argv);
- standard_shutdown();
+ standard_shutdown(0);
exit(0);
}