aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-05 09:21:24 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-05 09:21:24 +0000
commit20522c2c938824f6a34ffbe55c4039ca9b7df28b (patch)
tree2e465cd3b7d5f61f9eb318c1675ef27e164098de /coreutils
parente46352cebe5849bea1e2e837ee1572b01422e972 (diff)
downloadbusybox-w32-20522c2c938824f6a34ffbe55c4039ca9b7df28b.tar.gz
busybox-w32-20522c2c938824f6a34ffbe55c4039ca9b7df28b.tar.bz2
busybox-w32-20522c2c938824f6a34ffbe55c4039ca9b7df28b.zip
- fix segfault in reset_ino_dev_hashtable() when *hashtable was null.
Seen in the testsuite for du -l .../testsuite on exit with CLEAN_UP enabled. git-svn-id: svn://busybox.net/trunk/busybox@18331 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/du.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/coreutils/du.c b/coreutils/du.c
index e5fe5ffe2..e95f3a2f1 100644
--- a/coreutils/du.c
+++ b/coreutils/du.c
@@ -235,10 +235,8 @@ int du_main(int argc, char **argv)
235 total += du(*argv); 235 total += du(*argv);
236 slink_depth = slink_depth_save; 236 slink_depth = slink_depth_save;
237 } while (*++argv); 237 } while (*++argv);
238#if ENABLE_FEATURE_CLEAN_UP 238 if (ENABLE_FEATURE_CLEAN_UP)
239 reset_ino_dev_hashtable(); 239 reset_ino_dev_hashtable();
240#endif
241
242 if (print_final_total) { 240 if (print_final_total) {
243 print(total, "total"); 241 print(total, "total");
244 } 242 }