Skip to content

Commit 942c474

Browse files
authored
Change size type from size_t to uint32_t in INTOP_CPBLK (#118584)
1 parent 8b10891 commit 942c474

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/vm/interpexec.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2084,7 +2084,7 @@ void InterpExecMethod(InterpreterFrame *pInterpreterFrame, InterpMethodContextFr
20842084
{
20852085
void* dst = LOCAL_VAR(ip[1], void*);
20862086
void* src = LOCAL_VAR(ip[2], void*);
2087-
size_t size = LOCAL_VAR(ip[3], size_t);
2087+
uint32_t size = LOCAL_VAR(ip[3], uint32_t);
20882088
if (size && (!dst || !src))
20892089
COMPlusThrow(kNullReferenceException);
20902090
else

0 commit comments

Comments
 (0)