-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix exception property offset computation for PHP 8.1+ (#2901)
They're shared across all inheritors on PHP 8.1+ and thus only need to be incremented on the specific ce. This issue arises when a property from an inherited internal class extending Exception is itself inherited by another class. Also fix an accidentally discovered use-after-free with peer.service. Fixes #2898. Signed-off-by: Bob Weinand <[email protected]>
- Loading branch information
Showing
3 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule libdatadog
updated
19 files
+0 −1 | .github/workflows/all-checks.yml | |
+1 −1 | .github/workflows/coverage.yml | |
+10 −4 | .github/workflows/publish-serverless-agent.yml | |
+12 −12 | Cargo.lock | |
+26 −30 | LICENSE-3rdparty.yml | |
+2 −2 | dogstatsd/Cargo.toml | |
+18 −3 | dogstatsd/src/datadog.rs | |
+7 −2 | dogstatsd/src/flusher.rs | |
+1 −0 | dogstatsd/tests/integration_test.rs | |
+7 −0 | ruby/README.md | |
+5 −5 | ruby/Rakefile | |
+1 −1 | ruby/lib/libdatadog/version.rb | |
+1 −1 | serverless/Cargo.toml | |
+7 −1 | serverless/src/main.rs | |
+6 −5 | sidecar/src/shm_remote_config.rs | |
+6 −4 | trace-mini-agent/src/config.rs | |
+13 −3 | trace-mini-agent/src/env_verifier.rs | |
+3 −3 | trace-mini-agent/src/trace_processor.rs | |
+27 −4 | trace-utils/src/trace_utils.rs |