From ac7a377f64a19b1bda507a6aecaaab3f81f7ebbb Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Fri, 3 Sep 1993 14:26:29 +0000 Subject: * dcache.c: Cast return value from xmalloc. * remote.c: Move setting of immediate_quit from remote_open to remote_start_dummy and set it back to zero when done. --- gdb/dcache.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gdb/dcache.c') diff --git a/gdb/dcache.c b/gdb/dcache.c index 1b477b0..aaa01d0 100644 --- a/gdb/dcache.c +++ b/gdb/dcache.c @@ -204,10 +204,11 @@ dcache_init (reading, writing) register struct dcache_block *db; DCACHE *dcache; - dcache = xmalloc(sizeof(*dcache)); + dcache = (DCACHE *) xmalloc (sizeof (*dcache)); dcache->read_memory = reading; dcache->write_memory = writing; - dcache->the_cache = xmalloc(sizeof(*dcache->the_cache) * DCACHE_SIZE); + dcache->the_cache = (struct dcache_block *) + xmalloc (sizeof (*dcache->the_cache) * DCACHE_SIZE); dcache->dcache_free.next = dcache->dcache_free.last = &dcache->dcache_free; dcache->dcache_valid.next = dcache->dcache_valid.last = &dcache->dcache_valid; -- cgit v1.1