aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/yasm/libyasm/section.c
diff options
context:
space:
mode:
authordvshkurko <dvshkurko@yandex-team.ru>2022-02-10 16:45:51 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:51 +0300
commit321ee9bce31ec6e238be26dbcbe539cffa2c3309 (patch)
tree14407a2757cbf29eb97e266b7f07e851f971000c /contrib/tools/yasm/libyasm/section.c
parent2f6ca198245aeffd5e2d82b65927c2465b68b4f5 (diff)
downloadydb-321ee9bce31ec6e238be26dbcbe539cffa2c3309.tar.gz
Restoring authorship annotation for <dvshkurko@yandex-team.ru>. Commit 1 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 729d7770a42..903d3eb1fe6 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 */