]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/tests/compile_tests.c
ccanlint: make compile commands return output.
[ccan] / tools / ccanlint / tests / compile_tests.c
index b54ce958529f5e0a278f0d1f1e054abc4cbde54a..3549cdedf6611c0ce33bf4866b767a25de018e11 100644 (file)
@@ -71,14 +71,14 @@ static char *compile(const void *ctx,
        char *errmsg;
 
        file->compiled = maybe_temp_file(ctx, "", keep, file->fullname);
-       errmsg = compile_and_link(ctx, file->fullname, ccan_dir,
-                                 obj_list(m, link_with_module),
-                                 fail ? "-DFAIL" : "",
-                                 lib_list(m), file->compiled);
-       if (errmsg) {
+       if (!compile_and_link(ctx, file->fullname, ccan_dir,
+                             obj_list(m, link_with_module),
+                             fail ? "-DFAIL" : "",
+                             lib_list(m), file->compiled, &errmsg)) {
                talloc_free(file->compiled);
                return errmsg;
        }
+       talloc_free(errmsg);
        return NULL;
 }