Skip to content
Snippets Groups Projects
Commit 39c0b830 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Remove unnecessary NULL check (caught by Coverity)

parent 4187942a
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #1389 passed
......@@ -1026,7 +1026,7 @@ long js_exec(const char *fname, const char* buf, char** args)
memcpy(js_buf+js_buflen,line,len);
js_buflen+=len;
}
if(fp!=NULL && fp!=stdin)
if(fp!=stdin)
fclose(fp);
}
start=xp_timer();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment