mirror of
https://github.com/HACKERALERT/Picocrypt.git
synced 2025-01-01 20:32:17 +00:00
Fix splitter bug
This commit is contained in:
parent
57b45d8734
commit
9f1fd48acd
1 changed files with 1 additions and 1 deletions
|
@ -804,7 +804,7 @@ func onDrop(names []string){
|
||||||
}
|
}
|
||||||
|
|
||||||
// Open input file in read-only mode
|
// Open input file in read-only mode
|
||||||
fin,_ := os.Open(names[0])
|
fin,_ := os.Open(names[0]+".pcv.0")
|
||||||
|
|
||||||
// Use regex to test if input is a valid Picocrypt volume
|
// Use regex to test if input is a valid Picocrypt volume
|
||||||
tmp := make([]byte,30)
|
tmp := make([]byte,30)
|
||||||
|
|
Loading…
Reference in a new issue