mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-04-10 23:58:06 -05:00
Partially revert r9636. It is true that we can directly return the
result of memcmp, but untrue that we can do so _unconditionally_: if memcmp returns zero, we still need to fall through to the next comparison. [originally from svn r9637] [r9636 == 538090ede444b111039904cf918f095dc858e875]
This commit is contained in:
parent
538090ede4
commit
03ebc74b9f
6
timing.c
6
timing.c
@ -62,7 +62,11 @@ static int compare_timers(void *av, void *bv)
|
||||
*/
|
||||
#if defined(__LCC__) || defined(__clang__)
|
||||
/* lcc won't let us compare function pointers. Legal, but annoying. */
|
||||
return memcmp(&a->fn, &b->fn, sizeof(a->fn));
|
||||
{
|
||||
int c = memcmp(&a->fn, &b->fn, sizeof(a->fn));
|
||||
if (c)
|
||||
return c;
|
||||
}
|
||||
#else
|
||||
if (a->fn < b->fn)
|
||||
return -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user