Add fuzz calls for newly added SBProcess methods.  Fix a typo in the audodoc of SBProcess.ReadCStringFromMemory().


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@146695 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/interface/SBProcess.i b/scripts/Python/interface/SBProcess.i
index 920aefb..da8a28f 100644
--- a/scripts/Python/interface/SBProcess.i
+++ b/scripts/Python/interface/SBProcess.i
@@ -215,7 +215,7 @@
     
     # Read a C string of at most 256 bytes from address '0x1000' 
     error = lldb.SBError()
-    cstring = process.ReadMemory(0x1000, 256, error)
+    cstring = process.ReadCStringFromMemory(0x1000, 256, error)
     if error.Success():
         print 'cstring: ', cstring
     else