Browse Source

htable: error on not finding htable in pv set

Daniel-Constantin Mierla 1 year ago
parent
commit
82cfea317f
1 changed files with 4 additions and 1 deletions
  1. 4 1
      src/modules/htable/ht_var.c

+ 4 - 1
src/modules/htable/ht_var.c

@@ -73,8 +73,11 @@ int pv_set_ht_cell(
 
 	if(hpv->ht == NULL)
 		hpv->ht = ht_get_table(&hpv->htname);
-	if(hpv->ht == NULL)
+	if(hpv->ht == NULL) {
+		LM_ERR("htable not found for setting $sht(%.*s=>%.*s)\n",
+				hpv->htname.len, hpv->htname.s, htname.len, htname.s);
 		return -1;
+	}
 
 	if(pv_printf_s(msg, hpv->pve, &htname) != 0) {
 		LM_ERR("cannot get $sht name\n");