mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0030772: Data Exchange - Invalid person's name constructed by STEPConstruct_AP203Context class.
// fixed remarks.
This commit is contained in:
parent
d31fb73a09
commit
61aef3ce05
@ -179,15 +179,14 @@ Handle(StepBasic_PersonAndOrganization) STEPConstruct_AP203Context::DefaultPerso
|
||||
|
||||
// construct person`s name
|
||||
OSD_Process sys;
|
||||
Standard_CString usr = sys.UserName().ToCString();
|
||||
#if !defined(_WIN32) && !defined(__ANDROID__)
|
||||
if ( usr ) {
|
||||
struct passwd *pwd = getpwnam ( usr );
|
||||
if ( pwd ) usr = pwd->pw_gecos;
|
||||
TCollection_AsciiString user (sys.UserName());
|
||||
#if !defined(_WIN32) && !defined(__ANDROID__)
|
||||
if ( !user.IsEmpty() ) {
|
||||
struct passwd *pwd = getpwnam ( user.ToCString() );
|
||||
if ( pwd ) user = pwd->pw_gecos;
|
||||
}
|
||||
else usr = "Unknown";
|
||||
else user = "Unknown";
|
||||
#endif
|
||||
TCollection_AsciiString user ( usr );
|
||||
Handle(TCollection_HAsciiString) fname = new TCollection_HAsciiString ("");
|
||||
Handle(TCollection_HAsciiString) lname = new TCollection_HAsciiString ("");
|
||||
Handle(Interface_HArray1OfHAsciiString) mname;
|
||||
|
Loading…
x
Reference in New Issue
Block a user