dect
/
asterisk
Archived
13
0
Fork 0

Update the mysql driver to always return NULL columns, as this is needed for the realtime API to work correctly.

(closes issue #16138)
 Reported by: sohosys
 Patches: 
       20091029__issue16138.diff.txt uploaded by tilghman (license 14)
 Tested by: sohosys


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@233050 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
tilghman 2009-12-04 16:08:58 +00:00
parent 7a9301cf8f
commit 08651f52a3
1 changed files with 6 additions and 5 deletions

View File

@ -367,12 +367,13 @@ static struct ast_variable *realtime_mysql(const char *database, const char *tab
while ((row = mysql_fetch_row(result))) {
for (i = 0; i < numFields; i++) {
if (ast_strlen_zero(row[i]))
continue;
/* Encode NULL values separately from blank values, for the Realtime API */
if (row[i] == NULL) {
row[i] = "";
} else if (ast_strlen_zero(row[i])) {
row[i] = " ";
}
for (stringp = ast_strdupa(row[i]), chunk = strsep(&stringp, ";"); chunk; chunk = strsep(&stringp, ";")) {
if (!chunk || ast_strlen_zero(ast_strip(chunk))) {
continue;
}
if (prev) {
if ((prev->next = ast_variable_new(fields[i].name, chunk, ""))) {
prev = prev->next;