]> henry.ined.fr Git - .git/commitdiff
memory leka fixed
authorNicolas Brouard <bouard@ined.fr>
Wed, 11 Sep 2024 17:38:41 +0000 (19:38 +0200)
committerNicolas Brouard <bouard@ined.fr>
Wed, 11 Sep 2024 17:38:41 +0000 (19:38 +0200)
src/imach.c

index 3b6845ae7beb8e566ece18e41ff4c36b5e7cb7e2..6091e8f92b0290840559529dc64b9a1e1d029b46 100644 (file)
@@ -12893,8 +12893,8 @@ int decoderesult( char resultline[], int nres)
       return 1;
   }
   for(k=1; k<=j;k++){ /* Loop on any covariate of the RESULT LINE */
+      cutl(stra, strb, resultsav, ' '); /* keeps in strb after the first ' ' (stra is the rest of the resultline to be analyzed in the next loop *//*     resultsav= "V4=1 V5=25.1 V3=0" stra= "V5=25.1 V3=0" strb= "V4=1" */
     if(nbocc(resultsav,'=') >1){
-      cutl(stra,strb,resultsav,' '); /* keeps in strb after the first ' ' (stra is the rest of the resultline to be analyzed in the next loop *//*     resultsav= "V4=1 V5=25.1 V3=0" stra= "V5=25.1 V3=0" strb= "V4=1" */
       /* If resultsav= "V4= 1 V5=25.1 V3=0" with a blank then strb="V4=" and stra="1 V5=25.1 V3=0" */
       cutl(strc,strd,strb,'=');  /* strb:"V4=1" strc="1" strd="V4" */
       /* If a blank, then strc="V4=" and strd='\0' */