diff liboctave/pathsearch.h @ 11501:331fcc41ca23

data member initialization fixes
author John W. Eaton <jwe@octave.org>
date Thu, 13 Jan 2011 03:04:51 -0500
parents cbc402e64d83
children fd0a3ac60b0e
line wrap: on
line diff
--- a/liboctave/pathsearch.h	Thu Jan 13 02:48:07 2011 -0500
+++ b/liboctave/pathsearch.h	Thu Jan 13 03:04:51 2011 -0500
@@ -36,7 +36,7 @@
 
   dir_path (const std::string& s = std::string (),
             const std::string& d = std::string ())
-    : p_orig (s), p_default (d), initialized (false)
+    : p_orig (s), p_default (d), initialized (false), p (), pv ()
     {
       if (! p_orig.empty ())
         init ();