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:
parent
0af424c23c
commit
505e241c8a
@ -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 (){
|
||||
|
Loading…
x
Reference in New Issue
Block a user