Skip to content

Instantly share code, notes, and snippets.

@Leandros
Created February 20, 2017 09:12
Show Gist options
  • Save Leandros/b31c863062b9e202abf6ae9e2835c2d2 to your computer and use it in GitHub Desktop.
Save Leandros/b31c863062b9e202abf6ae9e2835c2d2 to your computer and use it in GitHub Desktop.
Error Checking
int
foo_can_fail(void)
{
bar_t bar;
if (bar_init(&bar))
return 1;
if (bar_do_stuff(&bar))
goto err1;
return 0;
err1:
bar_free(&bar);
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment