9pfs: drop duplicate line in proxy backend

This double free did not cause harm because v9fs_string_free() sets
str->data to NULL and g_free(NULL) is valid.

Signed-off-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
master
Greg Kurz 2016-09-16 08:56:14 +02:00
parent 799fe087e4
commit da4bc86c54
1 changed files with 0 additions and 1 deletions

View File

@ -777,7 +777,6 @@ static int proxy_mkdir(FsContext *fs_ctx, V9fsPath *dir_path,
errno = -retval;
retval = -1;
}
v9fs_string_free(&fullname);
return retval;
}