mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 20:49:43 +00:00
Applied patch from David Edelsohn <dje@watson.ibm.com>.
This commit is contained in:
parent
c6d805e091
commit
3a84337c99
@ -1,3 +1,10 @@
|
|||||||
|
2000-08-30 David Edelsohn <dje@watson.ibm.com>
|
||||||
|
|
||||||
|
Patch applied by Kevin Buettner <kevinb@redhat.com>:
|
||||||
|
|
||||||
|
* rs6000-nat.c (xcoff_relocate_symtab): Pass correct size
|
||||||
|
to xrealloc().
|
||||||
|
|
||||||
2000-08-29 Michael Snyder <msnyder@seadog.cygnus.com>
|
2000-08-29 Michael Snyder <msnyder@seadog.cygnus.com>
|
||||||
|
|
||||||
* valops.c (value_cast): Indentation fix-up.
|
* valops.c (value_cast): Indentation fix-up.
|
||||||
|
@ -931,7 +931,7 @@ xcoff_relocate_symtab (unsigned int pid)
|
|||||||
do
|
do
|
||||||
{
|
{
|
||||||
size = load_segs * ldisize;
|
size = load_segs * ldisize;
|
||||||
ldi = (void *) xrealloc (ldi, load_segs * size);
|
ldi = (void *) xrealloc (ldi, size);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
/* According to my humble theory, AIX has some timing problems and
|
/* According to my humble theory, AIX has some timing problems and
|
||||||
|
Loading…
Reference in New Issue
Block a user