aboutsummaryrefslogtreecommitdiffstats
path: root/main/frame.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-04 21:59:06 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-04 21:59:06 +0000
commit779a16372f32b2475bd715ba8f81d6a00d757938 (patch)
tree861829d65e7736d0a2f24bb39c069f20bca84239 /main/frame.c
parenta3df7ad6e7a7008d491c6d831368b5b16f8bf088 (diff)
Merged revisions 49536 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r49536 | kpfleming | 2007-01-04 15:58:42 -0600 (Thu, 04 Jan 2007) | 2 lines don't mark these allocations as 'cache' allocations when caching has been disabled ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@49538 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/frame.c')
-rw-r--r--main/frame.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/main/frame.c b/main/frame.c
index f8935db5c..39ba8cdad 100644
--- a/main/frame.c
+++ b/main/frame.c
@@ -304,10 +304,12 @@ static struct ast_frame *ast_frame_header_new(void)
return f;
}
}
-#endif
-
if (!(f = ast_calloc_cache(1, sizeof(*f))))
return NULL;
+#else
+ if (!(f = ast_calloc(1, sizeof(*f))))
+ return NULL;
+#endif
f->mallocd_hdr_len = sizeof(*f);
#ifdef TRACE_FRAMES