Răsfoiți Sursa

core: resolve negative index for dset before checking if it is last branch

- faster dropping of last branch

(cherry picked from commit f8f40045e1370002076f568a1e73e0b4b67e9d66)
Daniel-Constantin Mierla 10 ani în urmă
părinte
comite
1eb9aacfc5
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      dset.c

+ 2 - 2
dset.c

@@ -122,14 +122,14 @@ int drop_sip_branch(int idx)
 		return 0;
 	if(idx<0 && (int)nr_branches+idx<0)
 		return 0;
+	if(idx<0)
+		idx += nr_branches;
 	/* last branch */
 	if(idx==nr_branches-1)
 	{
 		nr_branches--;
 		return 0;
 	}
-	if(idx<0)
-		idx = nr_branches+idx;
 	/* shift back one position */
 	for(; idx<nr_branches-1; idx++)
 		memcpy(&branches[idx], &branches[idx+1], sizeof(branch_t));