mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
fix(custom): failed getline after closed pipe
This commit is contained in:
parent
1b13f9e38c
commit
0acc50264e
@ -54,8 +54,10 @@ void waybar::modules::Custom::continuousWorker()
|
||||
char* buff = nullptr;
|
||||
size_t len = 0;
|
||||
if (getline(&buff, &len, fp_) == -1) {
|
||||
pclose(fp_);
|
||||
fp_ = nullptr;
|
||||
if (fp_) {
|
||||
pclose(fp_);
|
||||
fp_ = nullptr;
|
||||
}
|
||||
thread_.stop();
|
||||
output_ = { 1, "" };
|
||||
std::cerr << name_ + " just stopped, is it endless?" << std::endl;
|
||||
|
Loading…
Reference in New Issue
Block a user