add configure check for AIX style sub-second resolution support
[metze/samba/wip.git] / nsswitch / pam_winbind.h
index d21fc04a78aa95d90ef4a65344aaa13fe0eb7eea..0395a1fd5b91dc545ef315858e0fda0fa2354c0e 100644 (file)
@@ -171,6 +171,6 @@ struct pwb_context {
        uint32_t ctrl;
 };
 
-#define TALLOC_FREE(ctx) do { if ((ctx) != NULL) {talloc_free(ctx); ctx=NULL;} } while(0)
+#define TALLOC_FREE(ctx) do { talloc_free(ctx); ctx=NULL; } while(0)
 #define TALLOC_ZERO_P(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type)
 #define TALLOC_P(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type)