Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Warning (level 1) C4318

Error Message

passing constant zero as the length to memset

You called the C run-time library's memset function with a zero character length. For example, memset(p,size,0). Instead, specify memset(p,0,size).

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.