2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00

braces added to resolve g++ 4.3.0 warning

[SVN r45359]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2008-05-14 19:38:08 +00:00
parent 79b7f88df6
commit a334649b0c

View File

@@ -68,8 +68,9 @@ struct with_custodian_and_ward : BasePolicy_
bool result = BasePolicy_::precall(args_);
if (!result)
if (!result) {
Py_DECREF(life_support);
}
return result;
}