]> git.ozlabs.org Git - petitboot/blobdiff - discover/paths.c
discover: Properly handle return values
[petitboot] / discover / paths.c
index 0d414ebaac0833a075b0f65532734e1620e46649..c25671b17a6a22404600da2a64cc9febca93f84f 100644 (file)
@@ -220,15 +220,16 @@ static enum tftp_type check_tftp_type(void *ctx)
        const char *argv[] = { pb_system_apps.tftp, "-V", NULL };
        struct process *process;
        enum tftp_type type;
+       int rc;
 
        process = process_create(ctx);
        process->path = pb_system_apps.tftp;
        process->argv = argv;
        process->keep_stdout = true;
        process->add_stderr = true;
-       process_run_sync(process);
+       rc = process_run_sync(process);
 
-       if (!process->stdout_buf || process->stdout_len == 0) {
+       if (rc || !process->stdout_buf || process->stdout_len == 0) {
                pb_log("Can't check TFTP client type!\n");
                type = TFTP_TYPE_BROKEN;