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

C6412

Visual Studio 2012

warning C6412: Potential buffer overrun while writing to buffer. The writable size is write_size bytes, but write_index bytes may be written.

This warning indicates that the value of the index that is used to write to the buffer can exceed the writeable size of the buffer.

Because the code analysis tool reports this warning when it cannot reduce a complex expression that represents the buffer size, or the index used to access the buffer, this warning might be reported in error.

The following code generates this warning.

char *a = new char[strlen(InputParam)];
a[10] = 1;
delete[] a;

The following code corrects this error.

int i = strlen(InputParam);
char *a = new char[i];
if (i > 10) a[10] = 1;
delete[] a;
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.