From: Seungha Son Date: Tue, 15 Aug 2017 22:45:42 +0000 (+0900) Subject: Fix build break X-Git-Tag: accepted/tizen/3.0/common/20170816.145134^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Faccepted%2Ftizen_3.0_wearable;p=platform%2Fcore%2Fappfw%2Fwgt-backend.git Fix build break Signed-off-by: Seungha Son Change-Id: I46179d94809fb053b89467ea676bf3d0e7a502b3 --- diff --git a/src/wgt/step/configuration/step_parse.cc b/src/wgt/step/configuration/step_parse.cc index 705c616..17a3ef9 100644 --- a/src/wgt/step/configuration/step_parse.cc +++ b/src/wgt/step/configuration/step_parse.cc @@ -100,7 +100,7 @@ void AppendWidgetMetadata(GList** metadatas, metadata_x* new_meta = static_cast(calloc(1, sizeof(metadata_x))); if (!new_meta) - return nullptr; + return; new_meta->key = strdup(meta.first.c_str()); if (!meta.second.empty()) new_meta->value = strdup(meta.second.c_str());