mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.6 KiB
67 lines
1.6 KiB
/*
|
|
* Copyright (C) 2001-2003 FhG FOKUS
|
|
* Copyright (C) 2006-2007 iptelorg GmbH
|
|
*
|
|
* This file is part of Kamailio, a free SIP server.
|
|
*
|
|
* Kamailio is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version
|
|
*
|
|
* Kamailio is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
/** \ingroup DB_API
|
|
* @{
|
|
*/
|
|
|
|
#include "db_rec.h"
|
|
|
|
#include "../../dprint.h"
|
|
#include "../../mem/mem.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
|
|
|
|
db_rec_t* db_rec(db_res_t* res, db_fld_t* fld)
|
|
{
|
|
db_rec_t* newp;
|
|
|
|
newp = (db_rec_t*)pkg_malloc(sizeof(db_rec_t));
|
|
if (newp == NULL) goto err;
|
|
memset(newp, '\0', sizeof(db_rec_t));
|
|
if (db_gen_init(&newp->gen) < 0) goto err;
|
|
newp->res = res;
|
|
newp->fld = fld;
|
|
return newp;
|
|
|
|
err:
|
|
ERR("Cannot create db_rec structure\n");
|
|
if (newp) {
|
|
db_gen_free(&newp->gen);
|
|
pkg_free(newp);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
void db_rec_free(db_rec_t* r)
|
|
{
|
|
if (r == NULL) return;
|
|
/* Do not release fld here, it points to an array in db_cmd */
|
|
db_gen_free(&r->gen);
|
|
pkg_free(r);
|
|
}
|
|
|
|
/** @} */
|