mirror of
https://github.com/QL-Win/QuickLook.git
synced 2026-03-30 01:01:21 +08:00
Fix the same previous issue in other plugins
This commit is contained in:
@@ -61,8 +61,8 @@ public class AppImageReader
|
||||
|
||||
public AppImageReader(string path)
|
||||
{
|
||||
using FileStream fs = File.OpenRead(path);
|
||||
Open(fs);
|
||||
using var fileStream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite | FileShare.Delete);
|
||||
Open(fileStream);
|
||||
}
|
||||
|
||||
private void Open(Stream stream)
|
||||
|
||||
Reference in New Issue
Block a user