bug fix in the linearizer in the C runtime

This commit is contained in:
kr.angelov
2013-03-14 12:31:49 +00:00
parent f1a42ad78e
commit cb37254882

View File

@@ -292,7 +292,7 @@ pgf_lzn_resolve(PgfLzn* lzn, PgfExpr expr, PgfCCat* ccat, GuPool* pool)
goto done;
}
case PGF_EXPR_META: {
if (ccat != NULL && ccat->lindefs == NULL) {
if (ccat == NULL || ccat->lindefs == NULL) {
goto done;
}