Skip to content
Snippets Groups Projects
Commit c55db752 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard
Browse files

oleaut32: Avoid hardcoding array lengths.

parent 520a92de
No related branches found
No related tags found
No related merge requests found
......@@ -6408,7 +6408,7 @@ static BSTR VARIANT_BstrReplaceDecimal(const WCHAR * buff, LCID lcid, ULONG dwFl
{
WCHAR *p;
WCHAR numbuff[256];
WCHAR empty[1] = {'\0'};
WCHAR empty[] = {'\0'};
NUMBERFMTW minFormat;
minFormat.NumDigits = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment