From: <ny...@us...> - 2006-07-30 02:06:47
|
Revision: 159 Author: nyaochi Date: 2006-07-29 19:06:40 -0700 (Sat, 29 Jul 2006) ViewCVS: http://svn.sourceforge.net/pmplib/?rev=159&view=rev Log Message: ----------- - Fixed a compile error. - Bumped the version number for Win32 GUI. Modified Paths: -------------- trunk/pmplib/frontend/easypmp/win32gui/easypmp_win32gui.rc trunk/pmplib/lib/gmi/gmi.c Modified: trunk/pmplib/frontend/easypmp/win32gui/easypmp_win32gui.rc =================================================================== --- trunk/pmplib/frontend/easypmp/win32gui/easypmp_win32gui.rc 2006-07-30 01:41:55 UTC (rev 158) +++ trunk/pmplib/frontend/easypmp/win32gui/easypmp_win32gui.rc 2006-07-30 02:06:40 UTC (rev 159) @@ -213,8 +213,8 @@ // VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,11,0,2 - PRODUCTVERSION 0,11,0,2 + FILEVERSION 0,12,0,2 + PRODUCTVERSION 0,12,0,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -230,12 +230,12 @@ BLOCK "040904b0" BEGIN VALUE "FileDescription", "EasyPMP [Win32 GUI] application" - VALUE "FileVersion", "0, 11, 0, 2" + VALUE "FileVersion", "0, 12, 0, 2" VALUE "InternalName", "easypmp_win32gui" VALUE "LegalCopyright", "Copyright 2005-2006 Nyaochi" VALUE "OriginalFilename", "easypmp_win32gui.exe" VALUE "ProductName", "EasyPMP [Win32 GUI]" - VALUE "ProductVersion", "0, 11, 0, 2" + VALUE "ProductVersion", "0, 12, 0, 2" END END BLOCK "VarFileInfo" Modified: trunk/pmplib/lib/gmi/gmi.c =================================================================== --- trunk/pmplib/lib/gmi/gmi.c 2006-07-30 01:41:55 UTC (rev 158) +++ trunk/pmplib/lib/gmi/gmi.c 2006-07-30 02:06:40 UTC (rev 159) @@ -226,6 +226,7 @@ /* If the artist name doesn't start with this word, then ignore it. */ + size_t artist_length = ucs2len(info->artist); size_t length = ucs2len(strip_words[i]); if (ucs2incmp(info->artist, strip_words[i], length) != 0) { break; @@ -241,7 +242,6 @@ that there might not actually be a next character... */ - size_t artist_length = ucs2len(info->artist); if (artist_length == length) { /* Artist name is (exactly) the word to be stripped */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |