* path.h (path_conv::path_conv): Initialise normalized_path to NULL.

This commit is contained in:
Christopher Faylor 2002-05-04 18:27:27 +00:00
parent 58e74c7e7f
commit 13ee3618d0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-05-24 Christopher January <chris@atomice.net>
* path.h (path_conv::path_conv): Initialise normalized_path to NULL.
2002-05-03 Christopher Faylor <cgf@redhat.com>
* net.cc (getdomainname): Change second argument of getdomainname to

View File

@ -126,7 +126,7 @@ class path_conv
check (src, opt | PC_NULLEMPTY, suffixes);
}
path_conv (): path_flags (0), known_suffix (NULL), error (0), devn (0), unit (0), fileattr (INVALID_FILE_ATTRIBUTES) {path[0] = '\0';}
path_conv (): path_flags (0), known_suffix (NULL), error (0), devn (0), unit (0), fileattr (INVALID_FILE_ATTRIBUTES), normalized_path (NULL) {path[0] = '\0';}
~path_conv ();
inline char *get_win32 () { return path; }