mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-18 23:12:15 +08:00
Avoid compiler warning in latest patch
* pinfo.cc (_pinfo::cwd): Initialize s to avoid comiler warning. (_pinfo::cmdline): Ditto. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
575ec00a43
commit
6261fb30a9
@ -1,3 +1,8 @@
|
||||
2015-06-08 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* pinfo.cc (_pinfo::cwd): Initialize s to avoid comiler warning.
|
||||
(_pinfo::cmdline): Ditto.
|
||||
|
||||
2015-06-08 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* pinfo.cc (_pinfo::root): Fake default root for native processes.
|
||||
|
@ -892,7 +892,7 @@ open_commune_proc_parms (DWORD pid, PRTL_USER_PROCESS_PARAMETERS prupp)
|
||||
char *
|
||||
_pinfo::cwd (size_t& n)
|
||||
{
|
||||
char *s;
|
||||
char *s = NULL;
|
||||
if (!this || !pid)
|
||||
return NULL;
|
||||
if (ISSTATE (this, PID_NOTCYGWIN))
|
||||
@ -938,7 +938,7 @@ _pinfo::cwd (size_t& n)
|
||||
char *
|
||||
_pinfo::cmdline (size_t& n)
|
||||
{
|
||||
char *s;
|
||||
char *s = NULL;
|
||||
if (!this || !pid)
|
||||
return NULL;
|
||||
if (ISSTATE (this, PID_NOTCYGWIN))
|
||||
|
Loading…
x
Reference in New Issue
Block a user