diff options
author | Lennart Poettering <lennart@poettering.net> | 2008-08-26 15:46:26 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2008-08-26 15:46:26 +0200 |
commit | 8df5b2de92cbbc1c61d5991bcb74d7b0e5abcb0f (patch) | |
tree | 9148912b63b1c391424abd475d27284f12bae6bb | |
parent | fd3c6b0f6015149e8ac801e155c1731d75f3d2c6 (diff) |
increase pa_xmalloc() limit to 96 MB, closes #344
-rw-r--r-- | src/pulse/xmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulse/xmalloc.c b/src/pulse/xmalloc.c index d1138d658..71a6847c5 100644 --- a/src/pulse/xmalloc.c +++ b/src/pulse/xmalloc.c @@ -36,7 +36,7 @@ #include "xmalloc.h" /* Make sure not to allocate more than this much memory. */ -#define MAX_ALLOC_SIZE (1024*1024*20) /* 20MB */ +#define MAX_ALLOC_SIZE (1024*1024*96) /* 96MB */ /* #undef malloc */ /* #undef free */ |