Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sycl/source/detail/device_binary_image.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ class RTDeviceBinaryImage {
protected:
sycl_device_binary get() const { return Bin; }

sycl_device_binary Bin;
sycl_device_binary Bin = nullptr;

ur::DeviceBinaryType Format = SYCL_DEVICE_BINARY_TYPE_NONE;
RTDeviceBinaryImage::PropertyRange SpecConstIDMap;
Expand Down
4 changes: 3 additions & 1 deletion sycl/source/detail/global_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,9 @@ void GlobalHandler::releaseDefaultContexts() {
// For Linux, early shutdown is here, and late shutdown is called from
// a low priority destructor.
struct StaticVarShutdownHandler {

StaticVarShutdownHandler(const StaticVarShutdownHandler &) = delete;
StaticVarShutdownHandler &
operator=(const StaticVarShutdownHandler &) = delete;
~StaticVarShutdownHandler() {
try {
#ifdef _WIN32
Expand Down
Loading