git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f60e5e
)
Fix crash when running without owner index.
author
František Dvořák
<valtri@civ.zcu.cz>
Fri, 15 Jun 2012 15:30:05 +0000
(15:30 +0000)
committer
František Dvořák
<valtri@civ.zcu.cz>
Fri, 15 Jun 2012 15:30:05 +0000
(15:30 +0000)
org.glite.lb.server/src/lb_html.c
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.lb.server/src/lb_html.c
b/org.glite.lb.server/src/lb_html.c
index
78a4c1d
..
aca66ed
100644
(file)
--- a/
org.glite.lb.server/src/lb_html.c
+++ b/
org.glite.lb.server/src/lb_html.c
@@
-72,7
+72,7
@@
int edg_wll_UserInfoToHTML(edg_wll_Context ctx UNUSED_VAR, edg_wlc_JobId *jobsOu
for (i = 0; i < total; i++) {
order[i].id_unparsed = edg_wlc_JobIdUnparse(jobsOut[i]);
- order[i].parent_unparsed =
edg_wlc_JobIdUnparse(statsOut[i].parent_job)
;
+ order[i].parent_unparsed =
statsOut ? edg_wlc_JobIdUnparse(statsOut[i].parent_job) : NULL
;
order[i].key = order[i].parent_unparsed ? order[i].parent_unparsed : order[i].id_unparsed;
order[i].order = i;
}