1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

* stdlib/divmod_1.c: Use correct type for dummy variable.

* stdlib/mod_1.c: Likewise.
This commit is contained in:
Ulrich Drepper
2008-10-17 08:38:08 +00:00
parent 5df2a427be
commit 292eb8177e
4 changed files with 8 additions and 3 deletions

View File

@ -634,7 +634,7 @@ _dl_update_slotinfo (unsigned long int req_modid)
newp = malloc ((2 + newsize) * sizeof (dtv_t));
if (newp == NULL)
oom ();
memcpy (newp, &dtv[-1], (2 * oldsize) * sizeof (dtv_t));
memcpy (newp, &dtv[-1], (2 + oldsize) * sizeof (dtv_t));
}
else
{