Thu Jul 18 12:01:29 2013 UTC ()
Fix use of NUL compared against pointers, including a real bug due to
missing indices. Bump revision.


(joerg)
diff -r1.3 -r1.4 pkgsrc/devel/google-glog/Makefile
diff -r1.2 -r1.3 pkgsrc/devel/google-glog/distinfo
diff -r0 -r1.1 pkgsrc/devel/google-glog/patches/patch-src_demangle.cc

cvs diff -r1.3 -r1.4 pkgsrc/devel/google-glog/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/google-glog/Makefile 2013/05/09 13:50:14 1.3
+++ pkgsrc/devel/google-glog/Makefile 2013/07/18 12:01:29 1.4
@@ -1,18 +1,19 @@ @@ -1,18 +1,19 @@
1# $NetBSD: Makefile,v 1.3 2013/05/09 13:50:14 joerg Exp $ 1# $NetBSD: Makefile,v 1.4 2013/07/18 12:01:29 joerg Exp $
2# 2#
3 3
4DISTNAME= glog-0.3.3 4DISTNAME= glog-0.3.3
5PKGNAME= google-${DISTNAME} 5PKGNAME= google-${DISTNAME}
 6PKGREVISION= 1
6CATEGORIES= devel 7CATEGORIES= devel
7MASTER_SITES= http://google-glog.googlecode.com/files/ 8MASTER_SITES= http://google-glog.googlecode.com/files/
8 9
9MAINTAINER= tonnerre@NetBSD.org 10MAINTAINER= tonnerre@NetBSD.org
10HOMEPAGE= http://code.google.com/p/google-glog/ 11HOMEPAGE= http://code.google.com/p/google-glog/
11COMMENT= Application Level Logging library for C++ 12COMMENT= Application Level Logging library for C++
12LICENSE= modified-bsd 13LICENSE= modified-bsd
13 14
14GNU_CONFIGURE= yes 15GNU_CONFIGURE= yes
15USE_LIBTOOL= yes 16USE_LIBTOOL= yes
16USE_TOOLS+= pkg-config 17USE_TOOLS+= pkg-config
17USE_LANGUAGES= c c++ 18USE_LANGUAGES= c c++
18 19

cvs diff -r1.2 -r1.3 pkgsrc/devel/google-glog/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/google-glog/distinfo 2013/05/09 13:50:14 1.2
+++ pkgsrc/devel/google-glog/distinfo 2013/07/18 12:01:29 1.3
@@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
1$NetBSD: distinfo,v 1.2 2013/05/09 13:50:14 joerg Exp $ 1$NetBSD: distinfo,v 1.3 2013/07/18 12:01:29 joerg Exp $
2 2
3SHA1 (glog-0.3.3.tar.gz) = ed40c26ecffc5ad47c618684415799ebaaa30d65 3SHA1 (glog-0.3.3.tar.gz) = ed40c26ecffc5ad47c618684415799ebaaa30d65
4RMD160 (glog-0.3.3.tar.gz) = 27fb1bd4156f6715b84d59293d96d1cadc79ea7a 4RMD160 (glog-0.3.3.tar.gz) = 27fb1bd4156f6715b84d59293d96d1cadc79ea7a
5Size (glog-0.3.3.tar.gz) = 509676 bytes 5Size (glog-0.3.3.tar.gz) = 509676 bytes
 6SHA1 (patch-src_demangle.cc) = a5c0ed2b5069894a52735cc691fd12997c77a8cd
6SHA1 (patch-src_glog_stl__logging.h.in) = c86472e0f87ca99e91a5ecdb8c33affdb6679c26 7SHA1 (patch-src_glog_stl__logging.h.in) = c86472e0f87ca99e91a5ecdb8c33affdb6679c26

File Added: pkgsrc/devel/google-glog/patches/Attic/patch-src_demangle.cc
$NetBSD: patch-src_demangle.cc,v 1.1 2013/07/18 12:01:29 joerg Exp $

--- src/demangle.cc.orig	2012-01-12 08:40:58.000000000 +0000
+++ src/demangle.cc
@@ -167,7 +167,7 @@ static size_t StrLen(const char *str) {
 // Returns true if "str" has at least "n" characters remaining.
 static bool AtLeastNumCharsRemaining(const char *str, int n) {
   for (int i = 0; i < n; ++i) {
-    if (str == '\0') {
+    if (str[i] == '\0') {
       return false;
     }
   }
@@ -223,7 +223,7 @@ static bool ParseTwoCharToken(State *sta
 // Returns true and advances "mangled_cur" if we find any character in
 // "char_class" at "mangled_cur" position.
 static bool ParseCharClass(State *state, const char *char_class) {
-  if (state->mangled_cur == '\0') {
+  if (state->mangled_cur == NULL) {
     return false;
   }
   const char *p = char_class;