Skip to content

Commit

Permalink
Merge pull request #5863 from BOINC/dpa_pclose
Browse files Browse the repository at this point in the history
  • Loading branch information
AenBleidd authored Oct 28, 2024
2 parents c81ac94 + e04484d commit d344bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ int run_command(char *cmd, vector<string> &out) {
while (fgets(buf, 256, fp)) {
out.push_back(buf);
}
fclose(fp);
pclose(fp);
#endif
#endif
return 0;
Expand Down

0 comments on commit d344bf9

Please sign in to comment.