Fix crash on unknown groups
This commit is contained in:
parent
aae9c392fa
commit
7174b507d3
2
sdn.cpp
2
sdn.cpp
|
@ -627,7 +627,7 @@ fun make_entry (const struct dirent *f) -> entry {
|
|||
: apply_attrs (to_wstring (info.st_uid), 0);
|
||||
|
||||
auto grp = g.gnames.find (info.st_gid);
|
||||
e.cols[entry::GROUP] = (grp != g.unames.end ())
|
||||
e.cols[entry::GROUP] = (grp != g.gnames.end ())
|
||||
? apply_attrs (to_wide (grp->second), 0)
|
||||
: apply_attrs (to_wstring (info.st_gid), 0);
|
||||
|
||||
|
|
Loading…
Reference in New Issue