]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
bouquet: fix wrong variable reference
authorJaroslav Kysela <perex@perex.cz>
Mon, 29 Feb 2016 19:04:25 +0000 (20:04 +0100)
committerJaroslav Kysela <perex@perex.cz>
Mon, 29 Feb 2016 19:04:25 +0000 (20:04 +0100)
src/bouquet.c

index 88ed93abc1b9d785e4b41765a446af2d442eeebc..5741a5c4325a50ce731d28da339a27858051f870 100644 (file)
@@ -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;