diff options
author | drh <drh@noemail.net> | 2018-05-29 15:18:31 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-05-29 15:18:31 +0000 |
commit | 59ee43a78e6f30663cc8693ef9d7c0ab24b288dd (patch) | |
tree | b47eb412fd892fb2dad6e06788b16ceff1aa4ef6 /src/expr.c | |
parent | 1d40cdbd4bdfb4750daaeea15939eda7c6a9bf31 (diff) | |
download | sqlite-59ee43a78e6f30663cc8693ef9d7c0ab24b288dd.tar.gz sqlite-59ee43a78e6f30663cc8693ef9d7c0ab24b288dd.zip |
Add a comment to justify a goto statement. No code changes.
FossilOrigin-Name: f141d806476aabe592a15d83b72c9409d2cd6bd7f9cced1ea2513c134191430a
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index 6aff83a25..91eb44b8e 100644 --- a/src/expr.c +++ b/src/expr.c @@ -3993,7 +3993,7 @@ expr_code_doover: case TK_COLLATE: case TK_UPLUS: { pExpr = pExpr->pLeft; - goto expr_code_doover; + goto expr_code_doover; /* 2018-04-28: Prevent deep recursion. OSSFuzz. */ } case TK_TRIGGER: { |