mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-19 19:13:22 +08:00
[!] bug fixed: issue #6812 ( windbg ext command !py does not work with full path )
git-svn-id: https://pykd.svn.codeplex.com/svn@53644 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
6e7d492e18
commit
26b5fb69a1
@ -38,7 +38,6 @@ class WindbgGlobalSession
|
||||
public:
|
||||
|
||||
WindbgGlobalSession() {
|
||||
interactiveMode = false;
|
||||
main = boost::python::import("__main__");
|
||||
}
|
||||
|
||||
@ -185,7 +184,7 @@ py( PDEBUG_CLIENT4 client, PCSTR args)
|
||||
|
||||
std::string argsStr( args );
|
||||
|
||||
char_tokenizer_t token( argsStr , char_separator_t( "\\", " \t", "\"" ) );
|
||||
char_tokenizer_t token( argsStr , char_separator_t( "", " \t", "\"" ) );
|
||||
std::vector<std::string> argsList;
|
||||
|
||||
for ( char_tokenizer_t::iterator it = token.begin(); it != token.end(); ++it )
|
||||
|
Loading…
Reference in New Issue
Block a user