]> git.marmaro.de Git - mmh/blobdiff - uip/pick.c
Call context_read() before getting filter in repl
[mmh] / uip / pick.c
index 2d2bd6505c49385a0909e92bdbd390e2abc33389..320db1981a74a7261c4ff5b86c33873067b20017 100644 (file)
@@ -768,8 +768,7 @@ newnexus(int (*action)())
 {
        struct nexus *p;
 
-       if ((p = (struct nexus *) mh_xcalloc((size_t) 1, sizeof *p)) == NULL)
-               adios(EX_OSERR, NULL, "unable to allocate component storage");
+       p = (struct nexus *) mh_xcalloc((size_t) 1, sizeof *p);
 
        p->n_action = action;
        return p;