1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Add a comment to justify a goto statement. No code changes.

FossilOrigin-Name: f141d806476aabe592a15d83b72c9409d2cd6bd7f9cced1ea2513c134191430a
This commit is contained in:
drh
2018-05-29 15:18:31 +00:00
parent 1d40cdbd4b
commit 59ee43a78e
3 changed files with 9 additions and 9 deletions

View File

@@ -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: {