Projet

Général

Profil

0008-python-add-macro-for-early-return-44287.patch

Benjamin Dauvergne, 20 juin 2020 12:44

Télécharger (715 octets)

Voir les différences:

Subject: [PATCH 08/21] python: add macro for early return (#44287)

 bindings/python/wrapper_top.c | 2 ++
 1 file changed, 2 insertions(+)
bindings/python/wrapper_top.c
73 73
}
74 74
#endif
75 75

  
76
#define RETURN_IF_FAIL(op) do { if (! (op)) { return NULL; } } while(0)
77

  
76 78
GQuark lasso_wrapper_key;
77 79

  
78 80

  
79
-