swpsize += BUFINC;
if (!(newswp = (char *)realloc(buffer, swpsize*sizeof(char)))) errorz(" Memory allocation error...Sorry!\n");
memcpy(newswp, buffer, swpsize-BUFINC);
free(buffer);Существуют такие сочетания размеров буфера и приращений BUFINC, при которых
срабатывает assert на операторе free (возвращается ругать типа "modified (page-) pointer". IMHO это происходит потому,что рано или поздно размер буфера будет иметь величину, кратную размеру страницы (у меня это слетело уже при swpsize = 4100). А в коде malloc.c (функция ifree) есть вот какое место :#define malloc_pagemask ((malloc_pagesize)-1)
#ifndef malloc_pageshift
#define malloc_pageshift 12U
#endif
#if !defined(malloc_pagesize)
#define malloc_pagesize (1UL<<malloc_pageshift)
#endifif (*mp == MALLOC_FIRST) { /* Page allocation */
/* Check the pointer */
if ((u_long)ptr & malloc_pagemask) {
wrtwarning("modified (page-) pointer\n");
return 0;
}
man realloc:The realloc() function changes the size of the previously allocated
memory referenced by ptr to size bytes. The contents of the memory are
unchanged up to the lesser of the new and old sizes. If the new size is
larger, the value of the newly allocated portion of the memory is
undefined. If the requested memory cannot be allocated, NULL is returned and the memory referenced by ptr is valid and unchanged. If memory can be allocated, the memory referenced by ptr
is freed and a pointer to the newly allocated memory is returned.
^^^^^^^^
swpsize += BUFINC;
if (!(newswp = new char[swpsize])) errorz(" Memory allocation error...Sorry!\n");
memcpy(newswp, buffer, swpsize-BUFINC);
delete[] buffer;
//if (!(newswp = (char *)realloc(buffer, swpsize))) errorz(" Memory allocation error...Sorry!\n");
if (!fread(newswp+swpsize-BUFINC, sizeof(char), BUFINC, fp)) myflock = 1;
return newswp;И слетает оно тоже при swpsize=4100!..
а BUFINC - сколько ?Можеш привести отдельную маленькую программу воспроизводящаю проблему, а не фрагмет кода.