[gpu] fix windows SEH exception issue #33092
Merged
+62
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Details:
create_datato use the actual data size calculated from the original element type and shape foru16/i16types, ensuringmemcpyonly reads the valid memory region.Description of the issue
create_datafunction used the layout's buffer size formemcpy, which is incorrect foru16/i16types as they are converted tof32in the layout. This causedbufSize(4 bytes/elem) to be larger than the actual source data (2 bytes/elem), leading to a buffer overread and SEH exception 0xc0000005.The code and line that caused this issue (if it is not changed directly)
openvino/src/plugins/intel_gpu/src/plugin/ops/constant.cpp
Line 129 in 0eb9180
Reproduction step and snapshot
Checklist
Tickets: