* path.h (path_conv::path_conv): Initialise normalized_path to NULL.
This commit is contained in:
parent
58e74c7e7f
commit
13ee3618d0
|
@ -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
|
||||
|
|
|
@ -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; }
|
||||
|
|
Loading…
Reference in New Issue