? abi/mybuildlog.log
? abi/src/WIN32_1.1.2_i386_OBJ
? abi/src/WIN32_x_i386_DBG
? abi/src/af/util/xp/stringpool.diff
? abi/src/wp/ap/xp/ap_wp_sidebar.cpp
? abi/src/wp/ap/xp/ap_wp_splash.cpp
? expat/xmltok/nametab.h
? libiconv/config.log
? libiconv/config.cache
? libiconv/libtool
? libiconv/config.status
? libiconv/Makefile
? libiconv/include/libiconv.h
? libiconv/man/Makefile
? libiconv/src/Makefile
? libiconv/src/config.h
? libiconv/tests/Makefile
? wv/config.log
? wv/config.h
? wv/config.cache
? wv/libtool
? wv/config.status
? wv/Makefile
? wv/expat/Makefile
? wv/expat/xmlparse/Makefile
? wv/expat/xmltok/Makefile
? wv/glib-wv/Makefile
? wv/iconv/Makefile
? wv/libole2/Makefile
? wv/magick/Makefile
? wv/oledecod/Makefile
Index: abi/src/af/util/xp/ut_bytebuf.cpp
===================================================================
RCS file: /cvsroot/abi/src/af/util/xp/ut_bytebuf.cpp,v
retrieving revision 1.6
diff -r1.6 ut_bytebuf.cpp
57c57
< 	UT_uint32 newSize = ((m_iSpace+spaceNeeded+m_iChunk-1)/m_iChunk)*m_iChunk;
---
> 	UT_uint32 newSize = ((m_iSize+spaceNeeded+m_iChunk-1)/m_iChunk)*m_iChunk;
123a124
> 
135c136,142
< 	// TODO consider adding some stuff to realloc-down if we cross a good-sized threshold.
---
> 	UT_uint32 newSpace = ((m_iSize+m_iChunk-1)/m_iChunk)*m_iChunk; //Calculate the new space needed
> 	if (newSpace != m_iSpace)
> 	{
> 		m_pBuf = (UT_Byte *)realloc(m_pBuf, newSpace);  //Re-allocate to the smaller size
> 		m_iSpace = newSpace; //update m_iSpace to the new figure
> 	}
> 
182c189,194
< 	// TODO consider reallocing down
---
> 	UT_uint32 newSpace = ((m_iSize+m_iChunk-1)/m_iChunk)*m_iChunk; //Calculate the new space needed
> 	if (newSpace != m_iSpace)
> 	{
> 		m_pBuf = (UT_Byte *)realloc(m_pBuf, newSpace);  //Re-allocate to the smaller size
> 		m_iSpace = newSpace; //update m_iSpace to the new figure
> 	}
Index: abi/src/hello/ap/xp/ap_View.cpp
===================================================================
RCS file: /cvsroot/abi/src/hello/ap/xp/ap_View.cpp,v
retrieving revision 1.4
diff -r1.4 ap_View.cpp
104a105
> 	return UT_FALSE;
