]> git.marmaro.de Git - mmh/commitdiff
Special-case an MHCONTEXT of "/dev/null" and don't try to lock it -- some
authorPeter Maydell <pmaydell@chiark.greenend.org.uk>
Sat, 19 Nov 2005 16:04:25 +0000 (16:04 +0000)
committerPeter Maydell <pmaydell@chiark.greenend.org.uk>
Sat, 19 Nov 2005 16:04:25 +0000 (16:04 +0000)
user scripts may use this to suppress modification of context.

ChangeLog
sbr/context_read.c

index 1ab8f4a0dd966199098970ef7927ba3c08427b6f..e8ba4c4ce0c720435e8f2ecb6dc61440d14ea373 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-19  Peter Maydell  <pmaydell@chiark.greenend.org.uk>
+
+       * bug #14977: sbr/context_read.c: special case an MHCONTEXT of
+       "/dev/null" and don't try to lock it.
+
 2005-11-09  Peter Maydell  <pmaydell@chiark.greenend.org.uk>
 
        * sbr/mf.c: fix buffer overrun with absurdly long addresses
index fcc12f99c29c9037a75ef9bdbb3af480b2536a04..6a1eea1259cfbaa94ac75a41232ff8abb3387525 100644 (file)
@@ -120,8 +120,11 @@ context_read (void)
     if ((cp = getenv ("MHCONTEXT")) == (char *)0 || *cp == '\0')
        cp = context;
 
-    /* context is NULL if context_foil() was called to disable use of context */
-    if (!cp) {
+    /* context is NULL if context_foil() was called to disable use of context
+     * We also support users setting explicitly setting MHCONTEXT to /dev/null.
+     * (if this wasn't specialcased then the locking would be liable to fail)
+     */
+    if (!cp || (strcmp(cp,"/dev/null") == 0)) {
        ctxpath = NULL;
        return;
     }