Author: jorton Date: Thu Feb 24 01:28:43 2005 New Revision: 155179 URL: http://svn.apache.org/viewcvs?view=rev&rev=155179 Log: * dbd/apr_dbd.c (apr_dbd_init): Fix compiler warning from use of uninitialized variable.
Modified: apr/apr-util/trunk/dbd/apr_dbd.c Modified: apr/apr-util/trunk/dbd/apr_dbd.c URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/dbd/apr_dbd.c?view=diff&r1=155178&r2=155179 ============================================================================== --- apr/apr-util/trunk/dbd/apr_dbd.c (original) +++ apr/apr-util/trunk/dbd/apr_dbd.c Thu Feb 24 01:28:43 2005 @@ -60,6 +60,8 @@ #endif #else + ret = APR_SUCCESS; + #if APU_HAVE_MYSQL DRIVER_LOAD("mysql", apr_dbd_mysql_driver, pool); #endif