[svn-commits] qwell: trunk r69108 - /trunk/res/res_config_pgsql.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Wed Jun 13 10:37:06 MST 2007
Author: qwell
Date: Wed Jun 13 12:37:06 2007
New Revision: 69108
URL: http://svn.digium.com/view/asterisk?view=rev&rev=69108
Log:
Continuation of issue 9968 (revision 69081). This should be the last one.
Modified:
trunk/res/res_config_pgsql.c
Modified: trunk/res/res_config_pgsql.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_config_pgsql.c?view=diff&rev=69108&r1=69107&r2=69108
==============================================================================
--- trunk/res/res_config_pgsql.c (original)
+++ trunk/res/res_config_pgsql.c Wed Jun 13 12:37:06 2007
@@ -180,7 +180,7 @@
stringp = PQgetvalue(result, rowIndex, i);
while (stringp) {
chunk = strsep(&stringp, ";");
- if (chunk && !ast_strlen_zero(ast_strip(chunk))) {
+ if (!ast_strlen_zero(ast_strip(chunk))) {
if (prev) {
prev->next = ast_variable_new(fieldnames[i], chunk);
if (prev->next) {
@@ -336,7 +336,7 @@
stringp = PQgetvalue(result, rowIndex, i);
while (stringp) {
chunk = strsep(&stringp, ";");
- if (chunk && !ast_strlen_zero(ast_strip(chunk))) {
+ if (!ast_strlen_zero(ast_strip(chunk))) {
if (initfield && !strcmp(initfield, fieldnames[i])) {
ast_category_rename(cat, chunk);
}
More information about the svn-commits
mailing list