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:
f67584b
)
* use modified il_string interface
author
Michal Voců
<michal@ruk.cuni.cz>
Fri, 2 Jun 2006 13:03:52 +0000
(13:03 +0000)
committer
Michal Voců
<michal@ruk.cuni.cz>
Fri, 2 Jun 2006 13:03:52 +0000
(13:03 +0000)
org.glite.lb.server/src/request.c
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.lb.server/src/request.c
b/org.glite.lb.server/src/request.c
index
f0364ac
..
be1885a
100644
(file)
--- a/
org.glite.lb.server/src/request.c
+++ b/
org.glite.lb.server/src/request.c
@@
-19,7
+19,7
@@
int
handle_request(edg_wll_Context ctx,char *buf)
{
-
char *
event;
+
il_octet_string_t
event;
int ret;
edg_wll_ResetError(ctx);
@@
-30,10
+30,10
@@
handle_request(edg_wll_Context ctx,char *buf)
return EDG_WLL_IL_PROTO;
}
- ret = db_store(ctx, "NOT USED", event);
+ ret = db_store(ctx, "NOT USED", event
.data
);
- if(event)
- free(event);
+ if(event
.data
)
+ free(event
.data
);
return(ret);
}