forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
21 lines
607 B
Text
21 lines
607 B
Text
#
|
|
# Do a basic sanity check on the method in the CVSROOT - don't crash
|
|
# if one is not specified! Bug#274020
|
|
#
|
|
# Patch from Steve McIntyre <steve@einval.com>
|
|
diff -Nur src/root.c src/root.c
|
|
--- src/root.c 2005-09-25 08:38:29.000000000 +0800
|
|
+++ src/root.c 2006-02-26 17:48:32.000000000 +0800
|
|
@@ -535,6 +535,12 @@
|
|
method = "";
|
|
#endif /* defined (CLIENT_SUPPORT) || defined (SERVER_SUPPORT) */
|
|
|
|
+ if (NULL == method)
|
|
+ {
|
|
+ error (0, 0, "Missing method in CVSROOT.");
|
|
+ goto error_exit;
|
|
+ }
|
|
+
|
|
/* Now we have an access method -- see if it's valid. */
|
|
|
|
if (!strcasecmp (method, "local"))
|