Commit 8dc455bc authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

d3dxof: Accept longer string size.

parent cd71cb26
......@@ -467,7 +467,7 @@ static BOOL is_integer(parse_buffer* buf)
static BOOL is_string(parse_buffer* buf)
{
char tmp[32];
char tmp[100];
DWORD pos = 0;
char c;
BOOL ok = 0;
......@@ -475,7 +475,7 @@ static BOOL is_string(parse_buffer* buf)
if (*buf->buffer != '"')
return FALSE;
while (!is_separator(c = *(buf->buffer+pos+1)) && (pos < 31))
while (!is_separator(c = *(buf->buffer+pos+1)) && (pos < 99))
{
if (c == '"')
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment