From 26b5fb69a17709977430f9f8fe07ea778b25f67c Mon Sep 17 00:00:00 2001
From: "SND\\kernelnet_cp"
 <SND\kernelnet_cp@9b283d60-5439-405e-af05-b73fd8c4d996>
Date: Thu, 5 Aug 2010 17:05:35 +0000
Subject: [PATCH] [!] 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
---
 pykd/dbgext.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/pykd/dbgext.cpp b/pykd/dbgext.cpp
index c71abb7..00c25b0 100644
--- a/pykd/dbgext.cpp
+++ b/pykd/dbgext.cpp
@@ -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 )