yftest: cleanup

This commit is contained in:
2025-06-10 14:08:24 +02:00
parent 76baaec56f
commit be52b83ac1
2 changed files with 2 additions and 6 deletions
Binary file not shown.
+2 -6
View File
@@ -272,17 +272,15 @@ void setup_variables_before_exec(){
size_t len_bp = strlen(bar_progress); size_t len_bp = strlen(bar_progress);
size_t len_db = strlen(default_bar_progress); size_t len_db = strlen(default_bar_progress);
if( len_bp >= len_db ){ if( len_bp >= len_db ){
char *tmp_bp=malloc(len_bp+1); char tmp_bp[len_bp+1];
strcpy(tmp_bp,bar_progress); strcpy(tmp_bp,bar_progress);
tmp_bp[2]='u'; tmp_bp[2]='u';
//free(bar_progress);
bar_progress=tmp_bp; bar_progress=tmp_bp;
} }
else{ else{
char *tmp_bp=malloc(len_bp); char tmp_bp[len_bp+1];
strcpy(tmp_bp,default_bar_progress); strcpy(tmp_bp,default_bar_progress);
tmp_bp[2]='u'; tmp_bp[2]='u';
//free(default_bar_progress);
default_bar_progress=tmp_bp; default_bar_progress=tmp_bp;
} }
} }
@@ -1519,8 +1517,6 @@ __attribute__((destructor))
void void
purge_tests() purge_tests()
{ {
if(strcmp(default_bar_progress," c")) free(default_bar_progress);
if(strcmp(bar_progress," c")) free(bar_progress);
#if 1 #if 1
clear_all_func(&f_beging); clear_all_func(&f_beging);