1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0028679: Foundation Classes - OSD_Process::UserName rises EXC_BAD_ACCESS on iphone simulator

check for a null pointer is added
This commit is contained in:
ibs 2017-04-24 19:23:55 +03:00 committed by bugmaster
parent 0af424c23c
commit 505e241c8a

View File

@ -84,12 +84,10 @@ Standard_Integer OSD_Process::ProcessId(){
return (getpid()); return (getpid());
} }
TCollection_AsciiString OSD_Process::UserName(){ TCollection_AsciiString OSD_Process::UserName()
struct passwd *infos; {
infos = getpwuid(getuid()); struct passwd *anInfos = getpwuid (getuid());
TCollection_AsciiString result=infos->pw_name; return TCollection_AsciiString (anInfos ? anInfos->pw_name : "");
return(result);
} }
Standard_Boolean OSD_Process::IsSuperUser (){ Standard_Boolean OSD_Process::IsSuperUser (){