Merge pull request #241 from jlbribeiro/fix/essid-unescaped-input

Fix #240: Escape ESSID text before interpreting as pango
This commit is contained in:
Alex 2019-03-24 10:28:00 +01:00 committed by GitHub
commit 98c028226d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -491,7 +491,9 @@ void waybar::modules::Network::parseEssid(struct nlattr **bss)
if (ies_len > hdr_len && ies_len > ies[1] + hdr_len) {
auto essid_begin = ies + hdr_len;
auto essid_end = essid_begin + ies[1];
std::copy(essid_begin, essid_end, std::back_inserter(essid_));
std::string essid_raw;
std::copy(essid_begin, essid_end, std::back_inserter(essid_raw));
essid_ = Glib::Markup::escape_text(essid_raw);
}
}
}