Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(419)

Unified Diff: remoting/host/desktop_session_proxy.cc

Issue 1996753002: Fix DesktopSessioAgent crash when handling nullptr OnCaptureCompleted callback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Return an empty SerializedDesktopFrame if input DesktopFrame is nullptr Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/desktop_session_agent.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/desktop_session_proxy.cc
diff --git a/remoting/host/desktop_session_proxy.cc b/remoting/host/desktop_session_proxy.cc
index 4d1f5402882079ad288c69d8be0b8ce63bfc3fa6..82db2de98bd9ea6bd78dc43c455f7dab4c96757b 100644
--- a/remoting/host/desktop_session_proxy.cc
+++ b/remoting/host/desktop_session_proxy.cc
@@ -471,6 +471,14 @@ void DesktopSessionProxy::OnCaptureCompleted(
const SerializedDesktopFrame& serialized_frame) {
DCHECK(caller_task_runner_->BelongsToCurrentThread());
+ // If the input serialized_frame does not have a screen size, it means the
+ // capturer returns a nullptr for OnCaptureCompleted call.
+ if (serialized_frame.dimensions.is_empty()) {
+ --pending_capture_frame_requests_;
Sergey Ulanov 2016/05/26 12:20:10 Move this out of the if block and remove duplicate
Hzj_jie 2016/05/26 20:59:22 Done.
+ video_capturer_->OnCaptureCompleted(nullptr);
+ return;
+ }
+
// Assume that |serialized_frame| is well-formed because it was received from
// a more privileged process.
scoped_refptr<IpcSharedBufferCore> shared_buffer_core =
« no previous file with comments | « remoting/host/desktop_session_agent.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698