Skip to content

Commit ba369ea

Browse files
authored
Merge pull request #1744 from kbenzie/benie/fix-asan-coverity-uninit-ptr
Fix uninitialized pointer field
2 parents 12d3748 + 69ac2ec commit ba369ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/loader/layers/sanitizer/asan_interceptor.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ struct ContextInfo {
131131
};
132132

133133
struct USMLaunchInfo {
134-
LaunchInfo *Data;
134+
LaunchInfo *Data = nullptr;
135135

136136
ur_context_handle_t Context = nullptr;
137137
ur_device_handle_t Device = nullptr;

0 commit comments

Comments
 (0)