Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
02b95d72
Commit
02b95d72
authored
May 28, 2014
by
Uwe Schulzweida
Browse files
changed resHList_t to struct resHList_t (bug fix)
parent
cce39199
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/resource_handle.c
View file @
02b95d72
...
...
@@ -130,7 +130,7 @@ reshListCreate(int namespaceID)
LIST_LOCK
();
if
(
resHListSize
<=
namespaceID
)
{
resHList
=
(
resHList_t
*
)
xrealloc
(
resHList
,
(
namespaceID
+
1
)
*
sizeof
(
resHList
[
0
]));
resHList
=
(
struct
resHList_t
*
)
xrealloc
(
resHList
,
(
namespaceID
+
1
)
*
sizeof
(
resHList
[
0
]));
for
(
int
i
=
resHListSize
;
i
<=
namespaceID
;
++
i
)
reshListClearEntry
(
i
);
resHListSize
=
namespaceID
+
1
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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