* sim-core.c (sim_core_attach): Revise last patch.

Use 0xa5 as initial value.
This commit is contained in:
Doug Evans
1998-03-02 23:03:32 +00:00
parent 69d2f4a744
commit 0471756934
2 changed files with 5 additions and 1 deletions

View File

@@ -339,7 +339,10 @@ sim_core_attach (SIM_DESC sd,
if (optional_buffer == NULL)
{
int padding = (addr % sizeof (unsigned64));
free_buffer = xmalloc ((modulo == 0 ? nr_bytes : modulo) + padding);
unsigned int bytes = (modulo == 0 ? nr_bytes : modulo) + padding;
free_buffer = xmalloc (bytes);
/* #if WITH_DETERMINISTIC_SIMULATION? */
memset (free_buffer, 0xa5, bytes);
buffer = (char*) free_buffer + padding;
}
else