From: Lukasz Marek Date: Thu, 25 Apr 2013 17:09:50 +0000 (+0200) Subject: [Release] wrt-plugins-common_0.3.82 X-Git-Tag: 2.1b_release^0 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fframework%2Fweb%2Fwrt-plugins-common.git;a=commitdiff_plain;h=1779c5d329460e467429484d387545e94053b91d [Release] wrt-plugins-common_0.3.82 Change-Id: If7e37643ff0c91ae40287e22d0fc27d95e30d0fd --- diff --git a/packaging/wrt-plugins-common.spec b/packaging/wrt-plugins-common.spec index 9887776..e38118e 100644 --- a/packaging/wrt-plugins-common.spec +++ b/packaging/wrt-plugins-common.spec @@ -1,7 +1,7 @@ -#git:framework/web/wrt-plugins-common wrt-plugins-common_0.3.81 +#git:framework/web/wrt-plugins-common wrt-plugins-common_0.3.82 Name: wrt-plugins-common Summary: wrt-plugins common library -Version: 0.3.81 +Version: 0.3.82 Release: 1 Group: Development/Libraries License: Apache License, Version 2.0 diff --git a/src/Commons/IEvent.h b/src/Commons/IEvent.h index af3741a..8edec83 100644 --- a/src/Commons/IEvent.h +++ b/src/Commons/IEvent.h @@ -161,7 +161,9 @@ class IEvent : /*private DPL::WaitableEvent, */ public IEventController void signalCancelStatusFlag() { LogDebug("signaling cancel"); - getCancelStatusFlag().Signal(); + if (m_cancelStatusFlag) { + m_cancelStatusFlag->Signal(); + } } DPL::WaitableEvent &getCancelStatusFlag()