Explorar o código

* ftparchive/cachedb.cc:
- fix buffersize in bytes2hex

Michael Vogt %!s(int64=15) %!d(string=hai) anos
pai
achega
a52d11fbc1
Modificáronse 2 ficheiros con 6 adicións e 1 borrados
  1. 5 0
      debian/changelog
  2. 1 1
      ftparchive/cachedb.cc

+ 5 - 0
debian/changelog

@@ -1,5 +1,6 @@
 apt (0.8.16~exp5) experimental; urgency=low
 apt (0.8.16~exp5) experimental; urgency=low
 
 
+  [ Michael Vogt ]
   * apt-pkg/makefile:
   * apt-pkg/makefile:
     - install sha256.h compat header
     - install sha256.h compat header
   * apt-pkg/pkgcachegen.{cc,h}:
   * apt-pkg/pkgcachegen.{cc,h}:
@@ -22,6 +23,10 @@ apt (0.8.16~exp5) experimental; urgency=low
     - fix fetching language information by adding OptionalSubIndexTarget
     - fix fetching language information by adding OptionalSubIndexTarget
   * methods/https.cc:
   * methods/https.cc:
     - cleanup broken downloads properly
     - cleanup broken downloads properly
+  
+  [ Colin Watson ]
+  * ftparchive/cachedb.cc:
+    - fix buffersize in bytes2hex
 
 
  -- Michael Vogt <mvo@debian.org>  Fri, 05 Aug 2011 10:57:08 +0200
  -- Michael Vogt <mvo@debian.org>  Fri, 05 Aug 2011 10:57:08 +0200
 
 

+ 1 - 1
ftparchive/cachedb.cc

@@ -297,7 +297,7 @@ bool CacheDB::LoadContents(bool const &GenOnly)
 									/*}}}*/
 									/*}}}*/
 
 
 static string bytes2hex(uint8_t *bytes, size_t length) {
 static string bytes2hex(uint8_t *bytes, size_t length) {
-   char space[65];
+   char space[129];
    if (length * 2 > sizeof(space) - 1) length = (sizeof(space) - 1) / 2;
    if (length * 2 > sizeof(space) - 1) length = (sizeof(space) - 1) / 2;
    for (size_t i = 0; i < length; i++)
    for (size_t i = 0; i < length; i++)
       snprintf(&space[i*2], 3, "%02x", bytes[i]);
       snprintf(&space[i*2], 3, "%02x", bytes[i]);