Explorar el Código

buffer in the very unlikely event that someone adds 10 ...
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)

Arch Librarian hace 22 años
padre
commit
cb06300929
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      apt-pkg/pkgsystem.cc

+ 3 - 1
apt-pkg/pkgsystem.cc

@@ -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++;
 }