X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/3563e36580c7dad68cd6d3f7eb82eef570fc0c76..02d7884df1f33c9c7dc3a14c4b1a5f520ebe090a:/group-parse.c diff --git a/group-parse.c b/group-parse.c index 47998c6..276e2d2 100644 --- a/group-parse.c +++ b/group-parse.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: group-parse.c,v 1.1 2004/04/01 12:50:09 mdw Exp $ + * $Id: group-parse.c,v 1.2 2004/04/03 03:32:05 mdw Exp $ * * Parse group description strings * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: group-parse.c,v $ + * Revision 1.2 2004/04/03 03:32:05 mdw + * General robustification. + * * Revision 1.1 2004/04/01 12:50:09 mdw * Add cyclic group abstraction, with test code. Separate off exponentation * functions for better static linking. Fix a buttload of bugs on the way. @@ -78,6 +81,7 @@ group *group_parse(qd_parse *qd) g = group_ec(&ei); } break; } + if (!g) qd->e = "bad group parameters"; return (g); }