From: Jaroslav Kysela Date: Mon, 29 Feb 2016 19:04:25 +0000 (+0100) Subject: bouquet: fix wrong variable reference X-Git-Tag: v4.2.1~976 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0430326616e7a175058414aee2f37b84b8ef38cb;p=thirdparty%2Ftvheadend.git bouquet: fix wrong variable reference --- diff --git a/src/bouquet.c b/src/bouquet.c index 88ed93abc..5741a5c43 100644 --- a/src/bouquet.c +++ b/src/bouquet.c @@ -773,10 +773,9 @@ bouquet_class_chtag_ref_get ( void *obj ) { static const char *buf; bouquet_t *bq = obj; - char ubuf[UUID_HEX_SIZE]; if (bq->bq_chtag_ptr) - buf = idnode_uuid_as_str(&bq->bq_chtag_ptr->ct_id, ubuf); + buf = idnode_uuid_as_str(&bq->bq_chtag_ptr->ct_id, prop_sbuf); else buf = ""; return &buf;