From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25304 invoked by alias); 6 Jan 2008 12:17:41 -0000 Received: (qmail 25289 invoked by uid 9341); 6 Jan 2008 12:17:41 -0000 Date: Sun, 06 Jan 2008 12:17:00 -0000 Message-ID: <20080106121741.25287.qmail@sourceware.org> From: asl@sourceware.org To: ecos-cvs@ecos.sourceware.org Subject: ecos/packages/services/memalloc/common/current ... Mailing-List: contact ecos-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Post: List-Help: , Sender: ecos-cvs-owner@sourceware.org List-Subscribe: X-SW-Source: 2008/txt/msg00003.txt.bz2 CVSROOT: /cvs/ecos Module name: ecos Changes by: asl@sourceware.org 2008-01-06 12:17:41 Modified files: packages/services/memalloc/common/current: ChangeLog packages/services/memalloc/common/current/cdl: memalloc.cdl packages/services/memalloc/common/current/src: dlmalloc.cxx Log message: * src/dlmalloc.cxx (MALLOC_COPY): * cdl/memalloc.cdl: Use memmove instead of memcpy which can go wrong in realloc() when the new and old block overlaps. CYGIMP_MEMALLOC_ALLOCATOR_DLMALLOC_USE_MEMCPY has been retained instead of being renamed to ..._MEMMOVE to help backward compatibility with older configurations. Thanks to Oyvind Harboe and Dave Lawrence.