On 07/16/2013 02:56 PM, Bob Peterson wrote:
> This patch initializes a variable so that it no longer references
> it uninitialized.
>
> rhbz#984085
> ---
> gfs2/fsck/initialize.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gfs2/fsck/initialize.c b/gfs2/fsck/initialize.c
> index b01b240..936fd5e 100644
> --- a/gfs2/fsck/initialize.c
> +++ b/gfs2/fsck/initialize.c
> @@ -832,7 +832,7 @@ static int get_lockproto_table(struct gfs2_sbd *sdp)
> {
> FILE *fp;
> char line[PATH_MAX];
> - char *cluname, *end;
> + char *cluname, *end = NULL;
> const char *fsname, *cfgfile = "/etc/cluster/cluster.conf";
Just spotted this reference to cluster.conf ^^ remember it doesn't exist
anymore in the new era.
Fabio