1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +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());
}
TCollection_AsciiString OSD_Process::UserName(){
struct passwd *infos;
infos = getpwuid(getuid());
TCollection_AsciiString result=infos->pw_name;
return(result);
TCollection_AsciiString OSD_Process::UserName()
{
struct passwd *anInfos = getpwuid (getuid());
return TCollection_AsciiString (anInfos ? anInfos->pw_name : "");
}
Standard_Boolean OSD_Process::IsSuperUser (){