summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
a8f59fc)
Honestly, I don't see how a reader would think that the statement
following the `goto' was similarly covered by the conditional, but my
styling is obviously very different from everyone else's.
static int bbsset_x(PyObject *me, PyObject *val, void *hunoz)
{
mp *x = 0; grand *r = GRAND_R(me); int rc = -1; if (!x) NIERR("__del__");
static int bbsset_x(PyObject *me, PyObject *val, void *hunoz)
{
mp *x = 0; grand *r = GRAND_R(me); int rc = -1; if (!x) NIERR("__del__");
- if ((x = getmp(val)) == 0) goto end; r->ops->misc(r, BBS_SET, x); rc = 0;
+ if ((x = getmp(val)) == 0) goto end;
+ r->ops->misc(r, BBS_SET, x); rc = 0;
end: mp_drop(x); return (rc);
}
end: mp_drop(x); return (rc);
}