diff options
author | Christopher Faylor <me@cgf.cx> | 2002-05-04 18:27:27 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-05-04 18:27:27 +0000 |
commit | 13ee3618d0b42b5a8d6642f4bf974e252739572d (patch) | |
tree | 950927d86207b6c340dec75e595c7b4e592d45b4 /winsup/cygwin/path.h | |
parent | 58e74c7e7faf0bdf84f1b2030b98e122ab38f70f (diff) | |
download | cygnal-13ee3618d0b42b5a8d6642f4bf974e252739572d.tar.gz cygnal-13ee3618d0b42b5a8d6642f4bf974e252739572d.tar.bz2 cygnal-13ee3618d0b42b5a8d6642f4bf974e252739572d.zip |
* path.h (path_conv::path_conv): Initialise normalized_path to NULL.
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r-- | winsup/cygwin/path.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h index 79011ec13..7b47720e7 100644 --- a/winsup/cygwin/path.h +++ b/winsup/cygwin/path.h @@ -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; } |