svnno****@sourc*****
svnno****@sourc*****
2015年 8月 17日 (月) 13:08:26 JST
Revision: 5944 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5944 Author: yutakapon Date: 2015-08-17 13:08:25 +0900 (Mon, 17 Aug 2015) Log Message: ----------- チケット #35205 設定フォルダ:改善項目 openDirectoryWithExplorerの不要な引数を削除した。 Ticket Links: ------------ http://sourceforge.jp/projects/ttssh2/tracker/detail/35205 Modified Paths: -------------- trunk/teraterm/teraterm/vtwin.cpp -------------- next part -------------- Modified: trunk/teraterm/teraterm/vtwin.cpp =================================================================== --- trunk/teraterm/teraterm/vtwin.cpp 2015-08-17 03:34:23 UTC (rev 5943) +++ trunk/teraterm/teraterm/vtwin.cpp 2015-08-17 04:08:25 UTC (rev 5944) @@ -4565,7 +4565,7 @@ // return TRUE: success // FALSE: failure // -static BOOL openDirectoryWithExplorer(char *path, int pathlen) +static BOOL openDirectoryWithExplorer(char *path) { LPSHELLFOLDER pDesktopFolder; LPMALLOC pMalloc; @@ -4728,13 +4728,13 @@ goto error; } - openDirectoryWithExplorer(shPath, sizeof(shPath)); + openDirectoryWithExplorer(shPath); ret = TRUE; return (ret); error: - openDirectoryWithExplorer(path, sizeof(path)); + openDirectoryWithExplorer(path); return (ret); }