Package: xdu
Version: 3.0-19
Severity: normal
Tags: patch

Nodes that do not appear in the input file have a huge size (near
MAXINT) due to an incorrect constant type. See attached patch for a fix.

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'stable')
Architecture: i386 (x86_64)
Foreign Architectures: amd64

Kernel: Linux 4.14.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages xdu depends on:
ii  libc6     2.28-2
ii  libx11-6  2:1.6.4-3
ii  libxaw7   2:1.0.13-1+b2
ii  libxt6    1:1.1.5-1

xdu recommends no packages.

xdu suggests no packages.

-- no debconf information
--- a/xdu.c
+++ b/xdu.c
@@ -430,7 +430,7 @@
                }
        }
        /* no child matched, add a new child */
-       np = makenode(path[0],-1);
+       np = makenode(path[0],(long long)-1);
        insertchild(top,np,order);
 
        if (path[1] == NULL) {

Reply via email to