Filled in two missing values when dynamically making register info structs.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@151742 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index 72516d2..7d768ec 100644
--- a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -236,7 +236,9 @@
                         LLDB_INVALID_REGNUM, // generic reg num
                         reg_num,             // GDB reg num
                         reg_num           // native register number
-                    }
+                    },
+                    NULL,
+                    NULL
                 };
 
                 while (response.GetNameColonValue(name, value))