[NR.6] trivial: s/goto_exit/goto exit/ (#2287)
Some checks failed
build / build (push) Has been cancelled
Deploy Jekyll with GitHub Pages dependencies preinstalled / build (push) Has been cancelled
Deploy Jekyll with GitHub Pages dependencies preinstalled / deploy (push) Has been cancelled

The example intended:

    goto exit;

However, it was mistakenly written as:

    goto_exit;
This commit is contained in:
Michael Witten
2025-09-28 22:04:51 -05:00
committed by GitHub
parent 2722375cee
commit d40a490d48

View File

@@ -20889,7 +20889,7 @@ This technique is a pre-exception technique for RAII-like resource and error han
// ...
int* p = (int*) malloc(n);
// ...
if (some_error) goto_exit;
if (some_error) goto exit;
// ...
exit:
free(p);