fix a compiler warning about err_msg potentially being used uninitialized.
diff --git a/Modules/_posixsubprocess.c b/Modules/_posixsubprocess.c
index 5f226a8..d2f8d45 100644
--- a/Modules/_posixsubprocess.c
+++ b/Modules/_posixsubprocess.c
@@ -53,7 +53,7 @@
 {
     int i, saved_errno, fd_num;
     PyObject *result;
-    const char* err_msg;
+    const char* err_msg = "";
     /* Buffer large enough to hold a hex integer.  We can't malloc. */
     char hex_errno[sizeof(saved_errno)*2+1];