summaryrefslogtreecommitdiffstats
path: root/src/pulse
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-08-26 15:46:26 +0200
committerLennart Poettering <lennart@poettering.net>2008-08-26 15:46:26 +0200
commit8df5b2de92cbbc1c61d5991bcb74d7b0e5abcb0f (patch)
tree9148912b63b1c391424abd475d27284f12bae6bb /src/pulse
parentfd3c6b0f6015149e8ac801e155c1731d75f3d2c6 (diff)
increase pa_xmalloc() limit to 96 MB, closes #344
Diffstat (limited to 'src/pulse')
-rw-r--r--src/pulse/xmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulse/xmalloc.c b/src/pulse/xmalloc.c
index d1138d65..71a6847c 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 */