1920. [bug] Client memory contexts were not using internal

malloc. [RT# 15434]
This commit is contained in:
Mark Andrews
2005-09-28 04:52:03 +00:00
parent 081c8387a5
commit cfdb8ad3dc
2 changed files with 6 additions and 2 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: client.c,v 1.219.18.11 2005/08/15 01:46:48 marka Exp $ */
/* $Id: client.c,v 1.219.18.12 2005/09/28 04:52:03 marka Exp $ */
#include <config.h>
@@ -1698,7 +1698,8 @@ client_create(ns_clientmgr_t *manager, ns_client_t **clientp) {
* since we are very sure that multiple threads will never get access
* to the context simultaneously.
*/
result = isc_mem_create2(0, 0, &mctx, ISC_MEMFLAG_NOLOCK);
result = isc_mem_create2(0, 0, &mctx,
ISC_MEMFLAG_DEFAULT | ISC_MEMFLAG_NOLOCK);
if (result != ISC_R_SUCCESS)
return (result);
#else