diff options
author | Stefan Kemper <stefan.kemper@artifex.com> | 2003-10-01 14:44:06 +0000 |
---|---|---|
committer | Stefan Kemper <stefan.kemper@artifex.com> | 2003-10-01 14:44:06 +0000 |
commit | aa1d3ed3bfcf0dc32915e55c2083c9674496b342 (patch) | |
tree | fcd7f8ace5c8443073863b222267b0220a7580cb /pl/plalloc.c | |
parent | cc0188bf681cae653eced270bc888903f5c02501 (diff) |
Changed name of pl_stdio_t to gs_lib_ctx_t.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@1979 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'pl/plalloc.c')
-rw-r--r-- | pl/plalloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pl/plalloc.c b/pl/plalloc.c index 54986a674..78e3eb435 100644 --- a/pl/plalloc.c +++ b/pl/plalloc.c @@ -189,7 +189,7 @@ pl_mem_node_free_all_remaining(gs_memory_t *mem) #endif ; } - if (current->address != mem->pl_stdio) + if (current->address != mem->gs_lib_ctx) free(current->address); free(current); current = next; @@ -576,7 +576,7 @@ pl_alloc_init() if ( pl_malloc_init() == NULL ) return NULL; - pl_stdio_init(&pl_mem); + gs_lib_ctx_init(&pl_mem); pl_mem.head = 0; |