Blame SOURCES/cvs-1.11.19-comp.patch

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