]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7503: increase max
authorAnthony Minessale <anthm@freeswitch.org>
Mon, 20 Apr 2015 18:40:19 +0000 (13:40 -0500)
committerMichael Jerris <mike@jerris.com>
Thu, 28 May 2015 17:47:23 +0000 (12:47 -0500)
src/switch_core_file.c

index 528681363fd89f8f560c23d877ca39338fbe3500..f8026c31ea94e750d3354a437a64a31d8e24b82f 100644 (file)
@@ -167,7 +167,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_perform_file_open(const char *file,
                                tmp *= 1048576;
                        }
                        
-                       if (tmp > 0 && tmp < 52428800 /*50mb*/) {
+                       if (tmp > 0 && tmp < 104857600 /*100mb*/) {
                                fh->mm.vbuf = tmp;
                        } else {
                                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid buffer size: %d\n", tmp);