buffer in the very unlikely event that someone adds 10 ...
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:05:32 +0000 (17:05 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:05:32 +0000 (17:05 +0000)
Author: mdz
Date: 2004-02-27 00:43:16 GMT
buffer in the very unlikely event that someone adds 10 packaging
systems to apt (Closes: #233678)

apt-pkg/pkgsystem.cc

index 530f69c..86174a4 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: pkgsystem.cc,v 1.2 2001/02/20 07:03:17 jgg Exp $
+// $Id: pkgsystem.cc,v 1.3 2004/02/27 00:43:16 mdz Exp $
 /* ######################################################################
 
    System - Abstraction for running on different systems.
@@ -16,6 +16,7 @@
 
 #include <apt-pkg/pkgsystem.h>
 #include <apt-pkg/policy.h>
+#include <cassert>
                                                                        /*}}}*/
 
 pkgSystem *_system = 0;
@@ -28,6 +29,7 @@ unsigned long pkgSystem::GlobalListLen = 0;
 /* Add it to the global list.. */
 pkgSystem::pkgSystem()
 {
+   assert(GlobalListLen < sizeof(SysList)/sizeof(*SysList));
    SysList[GlobalListLen] = this;
    GlobalListLen++;
 }