[sr-dev] git:5.0:4e9921d7: db_text: more details in log message when nr of columns is too small

Daniel-Constantin Mierla miconda at gmail.com
Thu Aug 31 11:32:50 CEST 2017


Module: kamailio
Branch: 5.0
Commit: 4e9921d78032a850ca07bd604aa388f73bc3256a
URL: https://github.com/kamailio/kamailio/commit/4e9921d78032a850ca07bd604aa388f73bc3256a

Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2017-08-31T11:32:22+02:00

db_text: more details in log message when nr of columns is too small

(cherry picked from commit 2683b20d7b62f60ce53ed6692a42ed6b19fee972)

---

Modified: src/modules/db_text/dbt_base.c

---

Diff:  https://github.com/kamailio/kamailio/commit/4e9921d78032a850ca07bd604aa388f73bc3256a.diff
Patch: https://github.com/kamailio/kamailio/commit/4e9921d78032a850ca07bd604aa388f73bc3256a.patch

---

diff --git a/src/modules/db_text/dbt_base.c b/src/modules/db_text/dbt_base.c
index 425d351f15..667301268f 100644
--- a/src/modules/db_text/dbt_base.c
+++ b/src/modules/db_text/dbt_base.c
@@ -211,9 +211,10 @@ int dbt_query(db1_con_t* _h, db_key_t* _k, db_op_t* _op, db_val_t* _v,
 	}
 
 
-	if(!_tbc || _tbc->nrcols < _nc)
+	if(_tbc->nrcols < _nc)
 	{
-		LM_ERR("table %s not loaded! (too few columns)\n", CON_TABLE(_h)->s);
+		LM_ERR("table %s - too few columns (%d < %d)\n", CON_TABLE(_h)->s,
+				_tbc->nrcols, _nc);
 		goto error;
 	}
 	if(_k)




More information about the sr-dev mailing list