ソースを参照

Merge pull request #39 from stoeckmann/fgets

On success, fgets always terminates the result.
master
Aaron Marcher 7年前
committed by GitHub
コミット
95ceafcae7
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      slstatus.c

+ 1
- 1
slstatus.c ファイルの表示

@@ -447,7 +447,7 @@ run_command(const char *cmd)
warn("Failed to get command output for %s", cmd);
return smprintf("%s", UNKNOWN_STR);
}
fgets(buf, sizeof(buf) - 1, fp);
fgets(buf, sizeof(buf), fp);
pclose(fp);
buf[sizeof(buf) - 1] = '\0';



読み込み中…
キャンセル
保存