]> git.saurik.com Git - apt.git/commitdiff
Fixed initialization problem
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:53:20 +0000 (16:53 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:53:20 +0000 (16:53 +0000)
Author: jgg
Date: 1999-04-03 00:34:33 GMT
Fixed initialization problem

apt-pkg/contrib/configuration.h

index bf99f07c2eecd8afe2904b4919e1d804f0335c98..aeb181c7ac5c585a516cdd40fd3b1f1e9be01ced 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: configuration.h,v 1.10 1999/03/15 08:10:39 jgg Exp $
+// $Id: configuration.h,v 1.11 1999/04/03 00:34:33 jgg Exp $
 /* ######################################################################
 
    Configuration Class
@@ -46,7 +46,7 @@ class Configuration
       
       string FullTag() const;
       
-      Item() : Child(0), Next(0) {};
+      Item() : Parent(0), Child(0), Next(0) {};
    };
    Item *Root;