Skip to content
Snippets Groups Projects
Commit 41ffc0d9 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

always close the strings

parent 774c3403
No related branches found
No related tags found
No related merge requests found
......@@ -23,11 +23,11 @@ void ssexec_copy(ssexec_t *dest, ssexec_t *src)
{
log_flow() ;
stralloc_copy(&dest->base, &src->base) ;
stralloc_copy(&dest->live, &src->live) ;
stralloc_copy(&dest->tree, &src->tree) ;
stralloc_copy(&dest->scandir, &src->scandir) ;
stralloc_copy(&dest->treename, &src->treename) ;
auto_stra(&dest->base, src->base.s) ;
auto_stra(&dest->live, src->live.s) ;
auto_stra(&dest->tree, src->tree.s) ;
auto_stra(&dest->scandir, src->scandir.s) ;
auto_stra(&dest->treename, src->treename.s) ;
dest->treeallow = src->treeallow ;
dest->owner = src->owner ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment