search for: 15628ba

Displaying 1 result from an estimated 1 matches for "15628ba".

Did you mean: 15628
2015 May 14
1
[PATCH] When calling getline first time, initialize length to zero.
...index 84d58e8..6e91d71 100644 --- a/fuse/test-fuse.c +++ b/fuse/test-fuse.c @@ -250,7 +250,7 @@ test_fuse (void) fflush (stdout) FILE *fp; char *line = NULL; - size_t len; + size_t len = 0; struct stat statbuf; char buf[128]; ssize_t r; diff --git a/p2v/main.c b/p2v/main.c index 15628ba..1f8370b 100644 --- a/p2v/main.c +++ b/p2v/main.c @@ -306,7 +306,7 @@ partition_parent (dev_t part_dev) { CLEANUP_FCLOSE FILE *fp = NULL; CLEANUP_FREE char *path = NULL, *content = NULL; - size_t len; + size_t len = 0; unsigned parent_major, parent_minor; if (asprintf (&path, &...