diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-09 17:56:53 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-09 17:56:53 +0000 |
commit | 5606b1c4f36d6f4f467f85a417183a70bc00fe1d (patch) | |
tree | 8fbfa3feaba672585f8b45235f90c4093146385c /modutils/insmod.c | |
parent | 24a131ea4d6697f388bf9ef87c84d11b37f95503 (diff) |
- fix typo (Cristian Ionescu-Idbohrn)
Diffstat (limited to 'modutils/insmod.c')
-rw-r--r-- | modutils/insmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index df6bf10a0..3b5545118 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -3082,7 +3082,7 @@ static void obj_allocate_commons(struct obj_file *f) if (i == f->header.e_shnum) { struct obj_section *sec; - f->sections = xrealloc(f->sections, 2, i); + f->sections = xrealloc_vector(f->sections, 2, i); f->sections[i] = sec = arch_new_section(); f->header.e_shnum = i + 1; |