Просмотр исходного кода

- Don't fall off the end of the buffer when comparing v...
Author: mdz
Date: 2003-07-18 14:13:59 GMT
- Don't fall off the end of the buffer when comparing versions.

Arch Librarian лет назад: 22
Родитель
Сommit
7b464090c2
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      apt-pkg/deb/debversion.cc

+ 3 - 3
apt-pkg/deb/debversion.cc

@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // -*- mode: cpp; mode: fold -*-
 // Description								/*{{{*/
 // Description								/*{{{*/
-// $Id: debversion.cc,v 1.6 2003/01/27 00:05:59 jgg Exp $
+// $Id: debversion.cc,v 1.7 2003/07/18 14:13:59 mdz Exp $
 /* ######################################################################
 /* ######################################################################
 
 
    Debian Version - Versioning system for Debian
    Debian Version - Versioning system for Debian
@@ -65,8 +65,8 @@ int debVersioningSystem::CmpFragment(const char *A,const char *AEnd,
    {
    {
       int first_diff = 0;
       int first_diff = 0;
 
 
-      while ((lhs != AEnd && !isdigit(*lhs)) ||
-	     (rhs != BEnd && !isdigit(*rhs)) )
+      while (lhs != AEnd && rhs != BEnd &&
+	     (!isdigit(*lhs) || !isdigit(*rhs)))
       {
       {
 	 int vc = order(*lhs);
 	 int vc = order(*lhs);
 	 int rc = order(*rhs);
 	 int rc = order(*rhs);