mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
d3dxof: Accept longer string size.
This commit is contained in:
parent
cd71cb26f9
commit
8dc455bc63
1 changed files with 2 additions and 2 deletions
|
@ -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 == '"')
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue