From: Kisub Song Date: Thu, 6 Sep 2012 05:06:17 +0000 (+0900) Subject: Update change log and spec for wrt-plugins-tizen_0.2.79 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75d658b6d2178c9e6a6f8dace3cb42685d4f25ff;p=profile%2Fivi%2Fwrt-plugins-tizen.git Update change log and spec for wrt-plugins-tizen_0.2.79 Changed Modules : MediaContent [Version] 0.2.79 [Project] GT-I8800, Public [Title] SEL Verification [Team] WebAPI [BinType] PDA [Customer] Open [Issue] http://slp-info.sec.samsung.net/bugs/browse/WEB-1808a [Problem] findItem don't work when count value is null. [Cause] In the count argument, null or undefined will be regarded as a zero. [SCMRequest] N/A [SCMRequest] N/A Change-Id: Ie54c8fe9df7da55dd3e276a52e43e816124cf3a9 --- diff --git a/debian/changelog b/debian/changelog index a5b3b52..cf7c3e8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +wrt-plugins-tizen (0.2.79) unstable; urgency=low + + * Bug fix on MediaContent + * Git : slp/pkgs/w/wrt-plugins-tizen + * Tag : wrt-plugins-tizen_0.2.79 + + -- Kisub Song Thu, 06 Sep 2012 13:57:59 +0900 + wrt-plugins-tizen (0.2.78) unstable; urgency=low * Bug fix on LBS, Time and Alarm diff --git a/packaging/wrt-plugins-tizen.spec b/packaging/wrt-plugins-tizen.spec index b02b639..3ee46cb 100755 --- a/packaging/wrt-plugins-tizen.spec +++ b/packaging/wrt-plugins-tizen.spec @@ -1,6 +1,6 @@ Name: wrt-plugins-tizen Summary: JavaScript plugins for WebRuntime -Version: 0.2.78 +Version: 0.2.79 Release: 0 Group: TO_BE_FILLED License: TO_BE_FILLED diff --git a/src/standards/Tizen/Mediacontent/JSMediacontent.cpp b/src/standards/Tizen/Mediacontent/JSMediacontent.cpp index d2f58b4..1d1e46b 100755 --- a/src/standards/Tizen/Mediacontent/JSMediacontent.cpp +++ b/src/standards/Tizen/Mediacontent/JSMediacontent.cpp @@ -403,6 +403,8 @@ JSValueRef JSMediacontent::findItems( if(argumentCount >= 6) //optional unsigned long? count { long count = filterConverter->toLong(arguments[5]); + if (0 == count) + count = -1; dplEvent->setLimit(count); } if(argumentCount >= 7) //optional unsigned long? offset