فهرست منبع

FIX: Don't show Windows error dialog when cannot retrieve drive free space.

cobines 15 سال پیش
والد
کامیت
a8e2f4e2aa
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      src/platform/uOSUtils.pas

+ 3 - 0
src/platform/uOSUtils.pas

@@ -589,9 +589,12 @@ end;
 {$ELSE}
 var
   wPath: WideString;
+  OldErrorMode: Word;
 begin
   wPath:= UTF8Decode(Path);
+  OldErrorMode:= SetErrorMode(SEM_FAILCRITICALERRORS or SEM_NOOPENFILEERRORBOX);
   Result:= GetDiskFreeSpaceExW(PWChar(wPath), FreeSize, TotalSize, nil);
+  SetErrorMode(OldErrorMode);
 end;
 {$ENDIF}