mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-07-04 21:37:47 +02:00
64836e9b3c
Apply the no-internal-citation and WHY-not-WHAT rules to source comments; correct stale identifiers (NewBrowser, PBKDF2Key) and RFC facts (Yandex ciphertext, Firefox PBKDF2 password).
13 lines
384 B
Go
13 lines
384 B
Go
//go:build !windows
|
|
|
|
package filemanager
|
|
|
|
import "fmt"
|
|
|
|
// copyLocked is not supported on non-Windows platforms and always returns an error.
|
|
// File locking is primarily a Windows issue where Chrome holds exclusive
|
|
// locks on Cookie files via PRAGMA locking_mode=EXCLUSIVE.
|
|
func copyLocked(_, _ string) error {
|
|
return fmt.Errorf("locked file copy not supported on this platform")
|
|
}
|