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:
parent
0bc2a31ef9
commit
2d59c94b68
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user