Fix sol_memset to return the correct value. (#26598)

This commit is contained in:
bji 2022-07-14 09:27:02 -07:00 committed by GitHub
parent 819d6512ab
commit 61fd9288ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ static void *sol_memset(void *b, int c, size_t len) {
a++;
len--;
}
return b;
}
/**