[Devel] [patch i2o 3/6] i2o message leak in i2o_msg_post_wait_mem()
Vasily Averin
vvs at sw.ru
Tue May 15 05:44:27 PDT 2007
We need to free i2o msg in case of error.
Signed-off-by: Vasily Averin <vvs at sw.ru>
--- lk2.6/drivers/message/i2o/exec-osm.c
+++ lk2.6/drivers/message/i2o/exec-osm.c
@@ -131,8 +131,10 @@ int i2o_msg_post_wait_mem(struct i2o_con
int rc = 0;
wait = i2o_exec_wait_alloc();
- if (!wait)
+ if (!wait) {
+ i2o_msg_nop(c, msg);
return -ENOMEM;
+ }
if (tcntxt == 0xffffffff)
tcntxt = 0x80000000;
More information about the Devel
mailing list