Author: cwittich Date: Mon Aug 24 14:17:02 2009 New Revision: 42909
URL: http://svn.reactos.org/svn/reactos?rev=42909&view=rev Log: sync kernel32 profile with wine 1.1.28
Modified: trunk/reactos/dll/win32/kernel32/misc/profile.c
Modified: trunk/reactos/dll/win32/kernel32/misc/profile.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/kernel32/misc/pro... ============================================================================== --- trunk/reactos/dll/win32/kernel32/misc/profile.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/kernel32/misc/profile.c [iso-8859-1] Mon Aug 24 14:17:02 2009 @@ -16,7 +16,7 @@ * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */
#include <k32.h> @@ -383,13 +383,13 @@
case ENCODING_UTF16LE: DPRINT("UTF16 Little Endian encoding\n"); - szFile = pBuffer;// + 1; + szFile = pBuffer; szEnd = (WCHAR *)((char *)pBuffer + dwFileSize); break;
case ENCODING_UTF16BE: DPRINT("UTF16 Big Endian encoding\n"); - szFile = pBuffer;// + 1; + szFile = pBuffer; szEnd = (WCHAR *)((char *)pBuffer + dwFileSize); PROFILE_ByteSwapShortBuffer(szFile, dwFileSize / sizeof(WCHAR)); break; @@ -1611,12 +1611,12 @@ * Win95: * - if the buffer is 0 or 1 character long then it is as if it was of * infinite length. - * - otherwise, if the buffer is to small only the section names that fit + * - otherwise, if the buffer is too small only the section names that fit * are returned. - * - note that this means if the buffer was to small to return even just + * - note that this means if the buffer was too small to return even just * the first section name then a single '\0' will be returned. * - the return value is the number of characters written in the buffer, - * except if the buffer was too smal in which case len-2 is returned + * except if the buffer was too small in which case len-2 is returned * * Win2000: * - if the buffer is 0, 1 or 2 characters long then it is filled with