From: Charlotte Pabst cpabst@codeweavers.com
--- dlls/winedmo/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/winedmo/main.c b/dlls/winedmo/main.c index 849c1e675cb..e9ba6f4fb5a 100644 --- a/dlls/winedmo/main.c +++ b/dlls/winedmo/main.c @@ -30,11 +30,11 @@ static struct stream_context *stream_context_create( struct winedmo_stream *stre { struct stream_context *context;
- if (!(context = malloc( sizeof(*context) + 0x10000 ))) return NULL; + if (!(context = malloc( sizeof(*context) + 0x40000 ))) return NULL; context->stream = (UINT_PTR)stream; context->length = stream_size; context->position = 0; - context->capacity = 0x10000; + context->capacity = 0x40000; context->size = 0;
return context;