/
githubmirror
/
libreport
Обзор
Документация
Войти
/
githubmirror
/
libreport
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/lib/file_obj.c
48 строк
1 KB
Michal Fabik
Use g_free for GLib-alloc'd memory
17 июн 2021, 17:49
17 июн 2021, 17:49
865db9e
Код
Авторство
О чём код?
/* Copyright (C) 2011 ABRT Team Copyright (C) 2011 RedHat inc. This program 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. This program 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. */ #include "internal_libreport.h" file_obj_t *libreport_new_file_obj(const char* fullpath, const char* filename) { file_obj_t *file = g_malloc(sizeof(*file)); file->fullpath = g_strdup(fullpath); file->filename = g_strdup(filename); return file; } void libreport_free_file_obj(file_obj_t *f) { if (f == NULL) return; g_free(f->fullpath); g_free(f->filename); g_free(f); } const char *fo_get_fullpath(file_obj_t *fo) { return fo->fullpath; } const char *fo_get_filename(file_obj_t *fo) { return fo->filename; }