projects
/
platform
/
core
/
convergence
/
d2d-conv-manager.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4636a2
)
d2d-conv-manager: fix 64-bit build error
72/102172/1
accepted/tizen/3.0/common/20161206.125504
accepted/tizen/3.0/mobile/20161205.234827
accepted/tizen/3.0/tv/20161205.234835
accepted/tizen/3.0/wearable/20161205.234855
submit/tizen_3.0/20161205.070008
author
Hongkuk, Son
<hongkuk.son@samsung.com>
Mon, 5 Dec 2016 06:46:52 +0000
(15:46 +0900)
committer
Hongkuk, Son
<hongkuk.son@samsung.com>
Mon, 5 Dec 2016 06:48:00 +0000
(15:48 +0900)
casting with gsize *
Signed-off-by: Hongkuk, Son <hongkuk.son@samsung.com>
Change-Id: I22bae3e58f318f71120b7eeb0f6f0fd128c241d4
lib/conv_lib_payload.cpp
patch
|
blob
|
history
diff --git
a/lib/conv_lib_payload.cpp
b/lib/conv_lib_payload.cpp
index 54709f155e8efbb7d23261e9cccdc6faafcfffc0..f9ece344ea426ac4a12edb5f51e4953ae17bbaa8 100755
(executable)
--- a/
lib/conv_lib_payload.cpp
+++ b/
lib/conv_lib_payload.cpp
@@
-174,7
+174,7
@@
EXTAPI int conv_payload_get_byte(conv_payload_h handle, const char* key, int* le
IF_FAIL_RETURN_TAG(handle->jpayload.get(NULL, key, &str), CONV_ERROR_INVALID_PARAMETER, _E, "Value load failed");
unsigned int unsigned_len;
- *value = g_base64_decode(g_strdup(str.c_str()),
&unsigned_len
);
+ *value = g_base64_decode(g_strdup(str.c_str()),
(gsize *)(&unsigned_len)
);
*length = (int)unsigned_len;
ASSERT_ALLOC(*value);