Line 210 of source4/libnet/libnet_domain.c reads: if (!composite_is_ok(c)); This if-statements doesn't do anything. Most likely the line should read if (!composite_is_ok(c)) return; because almost every other call to composite_is_ok does this. Otherwise, if nothing should be done, regardless of the result, the line could be replaced by composite_is_ok(c); although I doubt that was the intention.
Yes, I also think that it should be corrected into "if (!composite_is_ok(c)) return;".
Created attachment 9921 [details] Patch from master. Applies cleanly to v4-1-test and v4-0-test. Please review and include in those branches if possible.
Re-assigning to Karolin for inclusion in 4.1.next, 4.0.next. Patch from master. Jeremy.
Pushed to autobuild-v4-[0|1]-test.
Pushed to both branches. Closing out bug report. Thanks!