From 6d1495b5486f3638b948fdc8cf1e0c10033ff6d0 Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 5 Aug 2007 20:57:20 +0000 Subject: [PATCH] Add a missing return: we always return after detecting the first error. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1800 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/lib/libvcl/vcc_action.c | 1 + 1 file changed, 1 insertion(+) diff --git a/varnish-cache/lib/libvcl/vcc_action.c b/varnish-cache/lib/libvcl/vcc_action.c index 9b007e0a..1cf063eb 100644 --- a/varnish-cache/lib/libvcl/vcc_action.c +++ b/varnish-cache/lib/libvcl/vcc_action.c @@ -279,6 +279,7 @@ parse_purge(struct tokenlist *tl) if (!vcc_StringVal(tl)) { vcc_ExpectedStringval(tl); + return; } Expect(tl, ')'); -- 2.39.5