Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
out_azure_logs_ingestion: fix NULL dereference (#7624)
The code checks if `ctx` is NULL, and if it is' NULL proceeds to dereference `ctx` by way of `ctx->ins`. As such, there will always be a NULL dereference if the condition `if (!ctx)` is true. This fixes it by removing the dereference.
- Loading branch information