[NR.6] trivial: s/goto_exit/goto exit/ (#2287)

The example intended:

    goto exit;

However, it was mistakenly written as:

    goto_exit;
pull/2289/head
Michael Witten 3 months ago committed by GitHub
parent 2722375cee
commit d40a490d48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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);

Loading…
Cancel
Save