2
0
mirror of git://github.com/lxc/lxc synced 2025-08-31 12:19:39 +00:00

quiet gcc 4.4.7 warning about saveptr use before initialization

The recent change to use strtok_r causes a build warning with this older
gcc version, so initialize saveptr to NULL to quiet the compiler and
unbreak the build. There was no warning with gcc 4.7.2 that I
originally tested with.

Signed-off-by: Dwight Engen <dwight.engen@oracle.com>
Acked-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
Dwight Engen
2013-04-16 11:47:29 -04:00
committed by Stéphane Graber
parent 98663823e4
commit 2c7d90ac6e

View File

@@ -759,7 +759,7 @@ static int setup_tty(const struct lxc_rootfs *rootfs,
static int setup_rootfs_pivot_root_cb(char *buffer, void *data)
{
struct lxc_list *mountlist, *listentry, *iterator;
char *pivotdir, *mountpoint, *mountentry, *saveptr;
char *pivotdir, *mountpoint, *mountentry, *saveptr = NULL;
int found;
void **cbparm;