* 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.
This commit is contained in:
Jim Kingdon
1993-09-03 14:26:29 +00:00
parent eba94f7d0d
commit ac7a377f64
3 changed files with 16 additions and 4 deletions

View File

@ -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;