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
|
// construct person`s name
|
||||||
OSD_Process sys;
|
OSD_Process sys;
|
||||||
Standard_CString usr = sys.UserName().ToCString();
|
TCollection_AsciiString user (sys.UserName());
|
||||||
#if !defined(_WIN32) && !defined(__ANDROID__)
|
#if !defined(_WIN32) && !defined(__ANDROID__)
|
||||||
if ( usr ) {
|
if ( !user.IsEmpty() ) {
|
||||||
struct passwd *pwd = getpwnam ( usr );
|
struct passwd *pwd = getpwnam ( user.ToCString() );
|
||||||
if ( pwd ) usr = pwd->pw_gecos;
|
if ( pwd ) user = pwd->pw_gecos;
|
||||||
}
|
}
|
||||||
else usr = "Unknown";
|
else user = "Unknown";
|
||||||
#endif
|
#endif
|
||||||
TCollection_AsciiString user ( usr );
|
|
||||||
Handle(TCollection_HAsciiString) fname = new TCollection_HAsciiString ("");
|
Handle(TCollection_HAsciiString) fname = new TCollection_HAsciiString ("");
|
||||||
Handle(TCollection_HAsciiString) lname = new TCollection_HAsciiString ("");
|
Handle(TCollection_HAsciiString) lname = new TCollection_HAsciiString ("");
|
||||||
Handle(Interface_HArray1OfHAsciiString) mname;
|
Handle(Interface_HArray1OfHAsciiString) mname;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user