drm/amd/display: Fix null pointer
authorJohnson Chen <johnson.chen@amd.com>
Fri, 1 Dec 2023 13:25:08 +0000 (06:25 -0700)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 6 Dec 2023 20:22:33 +0000 (15:22 -0500)
Add guard for NULL pointer access

Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Reviewed-by: Charlene Liu <charlene.liu@amd.com>
Acked-by: Rodrigo Siqueira <rodrigo.siqueira@amd.com>
Signed-off-by: Johnson Chen <johnson.chen@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dml2/dml2_utils.c

index 6ba393e5b8ee7ff47a509c59d408c87db6053d2c..38fa7441df51fe9b115853e0524447adcc1e47b8 100644 (file)
@@ -158,6 +158,8 @@ bool is_dp2p0_output_encoder(const struct pipe_ctx *pipe_ctx)
        /* If this assert is hit then we have a link encoder dynamic management issue */
        ASSERT(pipe_ctx->stream_res.hpo_dp_stream_enc ? pipe_ctx->link_res.hpo_dp_link_enc != NULL : true);
 
+       if (pipe_ctx->stream == NULL)
+               return false;
        /* Count MST hubs once by treating only 1st remote sink in topology as an encoder */
        if (pipe_ctx->stream->link && pipe_ctx->stream->link->remote_sinks[0]) {
                        return (pipe_ctx->stream_res.hpo_dp_stream_enc &&