Index: nss/lib/base/arena.c |
=================================================================== |
--- nss/lib/base/arena.c (revision 203524) |
+++ nss/lib/base/arena.c (working copy) |
@@ -704,7 +704,7 @@ |
nss_arena_call_destructor_chain(arenaMark->next_destructor); |
#endif /* ARENA_DESTRUCTOR_LIST */ |
- PR_ARENA_RELEASE(&arena->pool, inner_mark); |
+ PL_ARENA_RELEASE(&arena->pool, inner_mark); |
/* No error return */ |
} |
@@ -797,7 +797,7 @@ |
void *rv; |
struct pointer_header *h; |
PRUint32 my_size = size + sizeof(struct pointer_header); |
- PR_ARENA_ALLOCATE(p, &arena->pool, my_size); |
+ PL_ARENA_ALLOCATE(p, &arena->pool, my_size); |
if( (void *)NULL == p ) { |
nss_SetError(NSS_ERROR_NO_MEMORY); |
return (void *)NULL; |
@@ -1179,7 +1179,7 @@ |
return pointer; |
} |
- PR_ARENA_ALLOCATE(p, &arena->pool, my_newSize); |
+ PL_ARENA_ALLOCATE(p, &arena->pool, my_newSize); |
if( (void *)NULL == p ) { |
PR_Unlock(arena->lock); |
nss_SetError(NSS_ERROR_NO_MEMORY); |