aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/yasm/libyasm/section.c
diff options
context:
space:
mode:
authordvshkurko <dvshkurko@yandex-team.ru>2022-02-10 16:45:52 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:52 +0300
commitc768a99151e47c3a4bb7b92c514d256abd301c4d (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/tools/yasm/libyasm/section.c
parent321ee9bce31ec6e238be26dbcbe539cffa2c3309 (diff)
downloadydb-c768a99151e47c3a4bb7b92c514d256abd301c4d.tar.gz
Restoring authorship annotation for <dvshkurko@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/tools/yasm/libyasm/section.c')
-rw-r--r--contrib/tools/yasm/libyasm/section.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/tools/yasm/libyasm/section.c b/contrib/tools/yasm/libyasm/section.c
index 903d3eb1fe6..729d7770a42 100644
--- a/contrib/tools/yasm/libyasm/section.c
+++ b/contrib/tools/yasm/libyasm/section.c
@@ -220,7 +220,7 @@ yasm_object_create(const char *src_filename, const char *obj_filename,
int matched, i;
object->src_filename = yasm__xstrdup(src_filename);
- object->deb_filename = NULL;
+ object->deb_filename = NULL;
object->obj_filename = yasm__xstrdup(obj_filename);
/* No prefix/suffix */
@@ -385,8 +385,8 @@ yasm_object_set_source_fn(yasm_object *object, const char *src_filename)
{
yasm_xfree(object->src_filename);
object->src_filename = yasm__xstrdup(src_filename);
- yasm_xfree(object->deb_filename);
- object->deb_filename = NULL;
+ yasm_xfree(object->deb_filename);
+ object->deb_filename = NULL;
}
void
@@ -483,7 +483,7 @@ yasm_object_destroy(yasm_object *object)
/* Delete associated filenames */
yasm_xfree(object->src_filename);
- yasm_xfree(object->deb_filename);
+ yasm_xfree(object->deb_filename);
yasm_xfree(object->obj_filename);
/* Delete symbol table */