Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
85036f2f
Commit
85036f2f
authored
Jul 08, 2004
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unsuccessfill try to fix problem with analyse node for GetAp
parent
868f5cff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
wb/lib/wb/src/wb_tra.c
wb/lib/wb/src/wb_tra.c
+13
-1
No files found.
wb/lib/wb/src/wb_tra.c
View file @
85036f2f
...
...
@@ -388,10 +388,21 @@ static pwr_tStatus trace_get_attr_m4( gre_ctx grectx,
pwr_eType
par_type
;
pwr_tClassId
class
;
pwr_tObjid
objdid
;
char
parname
[
40
];
/* Get the objdid stored in the parameter Object */
switch
(
node
->
ln
.
classid
)
{
case
pwr_cClass_GetAp
:
strcpy
(
parname
,
"ApObject"
);
break
;
case
pwr_cClass_GetDp
:
strcpy
(
parname
,
"DpObject"
);
break
;
default:
strcpy
(
parname
,
"Object"
);
}
sts
=
ldh_GetObjectPar
(
node
->
hn
.
window_pointer
->
hw
.
ldhsession
,
node
->
ln
.
object_did
,
"DevBody"
,
"Object"
,
node
->
ln
.
object_did
,
"DevBody"
,
parname
,
(
char
**
)
&
objdidp
,
&
size
);
if
(
EVEN
(
sts
))
return
sts
;
...
...
@@ -402,6 +413,7 @@ static pwr_tStatus trace_get_attr_m4( gre_ctx grectx,
if
(
EVEN
(
sts
))
return
sts
;
strcpy
(
object_str
,
hier_name
);
objdid
=
*
objdidp
;
free
((
char
*
)
objdidp
);
/* Get the parametername stored in the parameter */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment