aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Carroll <thecarrolls@jiminger.com>2013-02-02 15:38:19 -0500
committerJim Carroll <thecarrolls@jiminger.com>2013-02-02 15:38:19 -0500
commit612f2444731c2a40fb0a1a8fb799acd1a295f677 (patch)
tree8e163f9054a199f2a32bcab5ca153d747def18a7
parenta1ddaf04fbb29cb6c09fd6b07c2f7212f0a6918a (diff)
Add a DelayedCallGuard to the RenderCapture.waitForCaptureStateChangeEvent. Closes #14044
m---------addons/skin.touched0
-rw-r--r--xbmc/interfaces/legacy/RenderCapture.h1
2 files changed, 1 insertions, 0 deletions
diff --git a/addons/skin.touched b/addons/skin.touched
-Subproject 932a728725889c4220bc4ac42f18b082e4361f8
+Subproject 1d03746646111f97e28b807a290bd762c7db547
diff --git a/xbmc/interfaces/legacy/RenderCapture.h b/xbmc/interfaces/legacy/RenderCapture.h
index f5b81e3ef3..26ed31175d 100644
--- a/xbmc/interfaces/legacy/RenderCapture.h
+++ b/xbmc/interfaces/legacy/RenderCapture.h
@@ -116,6 +116,7 @@ namespace XBMCAddon
*/
inline int waitForCaptureStateChangeEvent(unsigned int msecs = 0)
{
+ DelayedCallGuard dg(languageHook);
return msecs ? m_capture->GetEvent().WaitMSec(msecs) : m_capture->GetEvent().Wait();
}