mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 19:42:14 +00:00
Symbol environment may start with uppercase SRV
parseSymbolEnv shouldn't reject symbol environment variables, starting with uppercase "SRV", like SRV*C:\symbols*https://msdl.microsoft.com/download/symbols
This commit is contained in:
parent
49c2010b63
commit
165b044788
@ -257,7 +257,7 @@ public class PdbSymbolServerPlugin extends Plugin {
|
||||
// srv*[local cache]*[private symbol server]*https://msdl.microsoft.com/download/symbols
|
||||
// srv*c:\symbols*https://msdl.microsoft.com/download/symbols
|
||||
|
||||
if (!envString.startsWith("srv")) {
|
||||
if (!envString.startsWith("srv") && !envString.startsWith("SRV")) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user