Blame SOURCES/cvs-1.11.19-comp.patch

36e843
--- cvs-1.11.19/src/rcs.c.old	2005-03-17 11:21:18.000000000 +0100
36e843
+++ cvs-1.11.19/src/rcs.c	2005-03-17 11:21:56.000000000 +0100
36e843
@@ -138,7 +138,7 @@
36e843
    string comparisons.  This macro speeds things up a bit by skipping
36e843
    the function call when the first characters are different.  It
36e843
    evaluates its arguments multiple times.  */
36e843
-#define STREQ(a, b) (*(char *)(a) == *(char *)(b) && strcmp ((a), (b)) == 0)
36e843
+#define STREQ(a, b) ((a) != NULL && (b) != NULL && *(char *)(a) == *(char *)(b) && strcmp ((a), (b)) == 0)
36e843
 
36e843
 /*
36e843
  * We don't want to use isspace() from the C library because: