浏览代码

FIX: Check string length in cm_ToggleSelectionInName (fixes #1030) (#1031)

Hermholtz 2 年之前
父节点
当前提交
5cd1e33cd2
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      src/fcopymovedlg.pas

+ 3 - 0
src/fcopymovedlg.pas

@@ -173,6 +173,9 @@ begin
   iInitialStart := edtDst.SelStart;
   iInitialLength := edtDst.SelLength;
 
+  if iFullLength = 0 then
+    exit;
+
   repeat
     FCurrentCopyDlgNameSelectionStep := TCurrentCopyDlgNameSelectionStep((ord(FCurrentCopyDlgNameSelectionStep)+1) mod ord(ccdnssInvalid));