aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cast/streaming/sender_session.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cast/streaming/sender_session.h b/cast/streaming/sender_session.h
index f7fbb97a..ef68df73 100644
--- a/cast/streaming/sender_session.h
+++ b/cast/streaming/sender_session.h
@@ -41,10 +41,10 @@ class SenderSession final {
// If the sender is audio- or video-only, either of the senders
// may be nullptr. However, in the majority of cases they will be populated.
- Sender* audio_sender;
+ Sender* audio_sender = nullptr;
AudioCaptureConfig audio_config;
- Sender* video_sender;
+ Sender* video_sender = nullptr;
VideoCaptureConfig video_config;
};