[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [XenARM] [PATCH] Fix a warnig about potentialy uninitialized variable.
Signed-off-by: Jean-Christophe DUBOIS <jcd@xxxxxxxxxxxxxxx> --- xen/common/tmem_xen.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xen/common/tmem_xen.c b/xen/common/tmem_xen.c index 62f3789..8a7b667 100644 --- a/xen/common/tmem_xen.c +++ b/xen/common/tmem_xen.c @@ -105,7 +105,7 @@ static inline void *cli_get_page(tmem_cli_mfn_t cmfn, unsigned long *pcli_mfn, pfp_t **pcli_pfp, bool_t cli_write) { unsigned long cli_mfn; - p2m_type_t t; + p2m_type_t t = p2m_invalid; struct page_info *page; int ret; -- 1.7.4.1 _______________________________________________ Xen-arm mailing list Xen-arm@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/mailman/listinfo/xen-arm
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |