diff -r b2a1fe8f1b11 Modules/_ssl.c --- a/Modules/_ssl.c Fri Jul 17 11:59:57 2015 -0700 +++ b/Modules/_ssl.c Fri Jul 17 17:27:27 2015 -0500 @@ -3963,7 +3963,7 @@ PyObject *odir_env = NULL; PyObject *odir = NULL; -#define convert(info, target) { \ +#define convert(info, target) do { \ const char *tmp = (info); \ target = NULL; \ if (!tmp) { Py_INCREF(Py_None); target = Py_None; } \