/* * 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 #include 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); } /** @} */