1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

[qsort] Here also overflow was possible

This commit is contained in:
Witold Filipczyk 2024-12-28 15:18:14 +01:00
parent 0bc2a31ef9
commit 2d59c94b68

View File

@ -191,7 +191,15 @@ compare_nodes(const void *a, const void *b)
void *nodea = ((struct el_node_elem *)a)->node;
void *nodeb = ((struct el_node_elem *)b)->node;
return nodea - nodeb;
if (nodea < nodeb) {
return -1;
}
if (nodea > nodeb) {
return 1;
}
return 0;
}
int