1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* locales/oc_FR: Fix Thursday abday and August mon and abmon data.
This commit is contained in:
Ulrich Drepper
2007-10-02 04:19:37 +00:00
parent c8caf08958
commit 68f3802dfa
3 changed files with 10 additions and 3 deletions

View File

@ -3503,6 +3503,10 @@ mremap_chunk(p, new_size) mchunkptr p; size_t new_size;
/* Note the extra SIZE_SZ overhead as in mmap_chunk(). */
new_size = (new_size + offset + SIZE_SZ + page_mask) & ~page_mask;
/* No need to remap if the number of pages does not change. */
if (size + offset == new_size)
return p;
cp = (char *)mremap((char *)p - offset, size + offset, new_size,
MREMAP_MAYMOVE);