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

0030772: Data Exchange - Invalid person's name constructed by STEPConstruct_AP203Context class.

// fixed remarks.
This commit is contained in:
szy 2019-06-10 12:59:39 +03:00
parent d31fb73a09
commit 61aef3ce05

View File

@ -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;