summaryrefslogtreecommitdiff
path: root/res/res_config_odbc.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-06-28 19:41:18 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-06-28 19:41:18 +0000
commita952147446af3305e46ea1c7139c951c2f777752 (patch)
treee0ecc6c53be20cead23b7d702f6f9a18f83cb22e /res/res_config_odbc.c
parentdaec10d1871f3b17980a9de27edcb66a471adf3e (diff)
Remove the ill-advised ast_restrdupa API call and related structures
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@72492 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_config_odbc.c')
-rw-r--r--res/res_config_odbc.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/res/res_config_odbc.c b/res/res_config_odbc.c
index ae712042a..7715166b4 100644
--- a/res/res_config_odbc.c
+++ b/res/res_config_odbc.c
@@ -220,7 +220,6 @@ static struct ast_config *realtime_multi_odbc(const char *database, const char *
struct ast_variable *var=NULL;
struct ast_config *cfg=NULL;
struct ast_category *cat=NULL;
- struct ast_realloca ra;
SQLULEN colsize;
SQLSMALLINT colcount=0;
SQLSMALLINT datatype;
@@ -230,11 +229,9 @@ static struct ast_config *realtime_multi_odbc(const char *database, const char *
va_list aq;
va_copy(aq, ap);
-
-
+
if (!table)
return NULL;
- memset(&ra, 0, sizeof(ra));
obj = ast_odbc_request_obj(database, 0);
if (!obj)