Fixed bug #746
Fixed freeze when trying to memset with 0 length --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403756
This commit is contained in:
parent
b4a5bda1c1
commit
f558ab804b
1 changed files with 1 additions and 0 deletions
|
@ -319,6 +319,7 @@ do { \
|
|||
unsigned _n = (_count + 3) / 4; \
|
||||
Uint32 *_p = SDL_static_cast(Uint32 *, dst); \
|
||||
Uint32 _val = (val); \
|
||||
if (len == 0) break; \
|
||||
switch (_count % 4) { \
|
||||
case 0: do { *_p++ = _val; \
|
||||
case 3: *_p++ = _val; \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue