Corrected use of unitialized variables found by valgrind
This commit is contained in:
parent
07f0773c51
commit
7cfd5b31be
@ -132,7 +132,7 @@ ex:;
|
||||
int Xorriso_convert_uidstring(struct XorrisO *xorriso, char *uid_string,
|
||||
uid_t *uid, int flag)
|
||||
{
|
||||
double num;
|
||||
double num= 0.0;
|
||||
char text[80];
|
||||
struct passwd *pwd;
|
||||
|
||||
@ -156,7 +156,7 @@ int Xorriso_convert_uidstring(struct XorrisO *xorriso, char *uid_string,
|
||||
int Xorriso_convert_gidstring(struct XorrisO *xorriso, char *gid_string,
|
||||
gid_t *gid, int flag)
|
||||
{
|
||||
double num;
|
||||
double num= 0.0;
|
||||
char text[80];
|
||||
struct group *grp;
|
||||
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2011.05.06.120655"
|
||||
#define Xorriso_timestamP "2011.05.06.120834"
|
||||
|
Loading…
Reference in New Issue
Block a user