• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

FFFTPのソースコードです。


Commit MetaInfo

Revisionb3c1865f5ad8eca89c517d7601716a5223a12dc4 (tree)
Zeit2015-11-30 22:56:52
Autors_kawamoto <s_kawamoto@user...>
Commiters_kawamoto

Log Message

Fix bugs of dead locking.

Ändern Zusammenfassung

Diff

Binary files a/FFFTP_Eng_Release/FFFTP.exe and b/FFFTP_Eng_Release/FFFTP.exe differ
Binary files a/FFFTP_Eng_Release_64/FFFTP.exe and b/FFFTP_Eng_Release_64/FFFTP.exe differ
Binary files a/Release/FFFTP.exe and b/Release/FFFTP.exe differ
Binary files a/Release_64/FFFTP.exe and b/Release_64/FFFTP.exe differ
--- a/common.h
+++ b/common.h
@@ -81,7 +81,7 @@
8181 // ソフトウェア自動更新
8282 // リリースバージョンはリリース予定年(10進数4桁)+月(2桁)+日(2桁)+通し番号(0スタート2桁)とする
8383 // 2014年7月31日中の30個目のリリースは2014073129
84-#define RELEASE_VERSION_NUM 2015113000 /* リリースバージョン */
84+#define RELEASE_VERSION_NUM 2015113001 /* リリースバージョン */
8585
8686
8787 // SourceForge.JPによるフォーク
--- a/filelist.c
+++ b/filelist.c
@@ -922,7 +922,6 @@ static LRESULT FileListCommonWndProc(HWND hWnd, UINT message, WPARAM wParam, LPA
922922 hWndPnt = WindowFromPoint(Point);
923923 hWndParent = GetParent(hWndPnt);
924924 DisableUserOpe();
925- Dragging = NO;
926925 CancelFlg = NO;
927926
928927 // 変数が未初期化のバグ修正
@@ -958,16 +957,17 @@ static LRESULT FileListCommonWndProc(HWND hWnd, UINT message, WPARAM wParam, LPA
958957 }
959958
960959 }
961-
962- // 特定の操作を行うと異常終了するバグ修正
963- EnableUserOpe();
964-
960+
965961 #if defined(HAVE_TANDEM)
966962 if(FileListBaseNoExpand == NULL)
967963 pf = FileListBase;
968964 else
969965 #endif
970966 pf = FileListBaseNoExpand;
967+ // 特定の操作を行うと異常終了するバグ修正
968+ if(pf != NULL)
969+ Dragging = NO;
970+ EnableUserOpe();
971971 for (filenum = 0; pf ; filenum++) {
972972 pf = pf->Next;
973973 }