projects
/
platform
/
framework
/
native
/
appfw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a7956b
)
Fix a memory leak
author
Sunwook Bae
<sunwook45.bae@samsung.com>
Tue, 20 Aug 2013 06:11:24 +0000
(15:11 +0900)
committer
Sunwook Bae
<sunwook45.bae@samsung.com>
Tue, 20 Aug 2013 06:11:24 +0000
(15:11 +0900)
Change-Id: Id1a7eca227951a17717ab9887792ed48cda08522
Signed-off-by: Sunwook Bae <sunwook45.bae@samsung.com>
src/server/io/FIo_IpcServer.cpp
patch
|
blob
|
history
diff --git
a/src/server/io/FIo_IpcServer.cpp
b/src/server/io/FIo_IpcServer.cpp
index
fced1e5
..
b775ec1
100644
(file)
--- a/
src/server/io/FIo_IpcServer.cpp
+++ b/
src/server/io/FIo_IpcServer.cpp
@@
-708,6
+708,8
@@
_IpcServer::Send(IPC::Message* msg)
// empty statement;
}
+ delete msg;
+
return true;
}