From: Wonki Kim Date: Wed, 18 Mar 2020 04:47:05 +0000 (+0900) Subject: libaurum: fix a potentional error from missing-return X-Git-Tag: accepted/tizen/unified/20200324.101718~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f2418712764e3fdfd10d40c669cd0eaf60a1744;p=platform%2Fcore%2Fuifw%2Faurum.git libaurum: fix a potentional error from missing-return missing return value can cause a problem related with stack frame. this patch fixes it in advance. Change-Id: If3ee0269a9f94d6df800af84e67a83bdc60d5b33 --- diff --git a/libaurum/src/DeviceImpl/TM1Impl.cc b/libaurum/src/DeviceImpl/TM1Impl.cc index 9338726..de94cd5 100644 --- a/libaurum/src/DeviceImpl/TM1Impl.cc +++ b/libaurum/src/DeviceImpl/TM1Impl.cc @@ -27,7 +27,7 @@ TM1Impl::~TM1Impl() bool TM1Impl::click(const int x, const int y) { - click(x, y, INTV_CLICK); + return click(x, y, INTV_CLICK); } bool TM1Impl::click(const int x, const int y, const unsigned int intv)