projects
/
platform
/
core
/
appfw
/
slp-pkgmgr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff4817e
)
Fix static analyzer issue
67/223367/1
author
Sangyoon Jang
<jeremy.jang@samsung.com>
Wed, 29 Jan 2020 06:07:38 +0000
(15:07 +0900)
committer
Sangyoon Jang
<jeremy.jang@samsung.com>
Wed, 29 Jan 2020 06:07:38 +0000
(15:07 +0900)
Change-Id: I414283ee674f478663cf3567ba2afa6c60f45ac9
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
installer/pkgmgr_installer.c
patch
|
blob
|
history
diff --git
a/installer/pkgmgr_installer.c
b/installer/pkgmgr_installer.c
index
52ef06a
..
5183d37
100644
(file)
--- a/
installer/pkgmgr_installer.c
+++ b/
installer/pkgmgr_installer.c
@@
-286,6
+286,10
@@
static int __send_signal_for_event_for_uid(pkgmgr_installer *pi, uid_t uid,
data_len += gv_len;
data = malloc(data_len);
+ if (data == NULL) {
+ ERR("out of memory");
+ return -1;
+ }
ptr = data;
memcpy(ptr, &name_size, sizeof(size_t));
ptr += sizeof(size_t);