
Pages:<< prev 1 next >>


Off the Edge of the Map

GroupAdministrators
Posts1,199
JoinedMar 21, 2006
Bug: Freedom Client sometimes fails to find socials.
Danger: Low - Only an issue if you use IMC.
Found by: Kayle
Fixed by: Kayle
---
imc.c, imc_find_social
Find:
Replace with:
What happens is if you use a social with a long name like, 'marshmallow', and then try and use one like 'snicker', it's not nulling the end and so you end up with 'snickerllow'. Which, typically isn't a social.
Danger: Low - Only an issue if you use IMC.
Found by: Kayle
Fixed by: Kayle
---
imc.c, imc_find_social
Find:
// lower-case the social name before asking the MUD static char lcSocName[LGST]; for (int i = 0; i < LGST && sname[i] != '\0'; i++) { lcSocName[i] = tolower(sname[i]); }
Replace with:
// lower-case the social name before asking the MUD static char lcSocName[LGST]; for (int i = 0; i < LGST; i++) { if( sname[i] != '\0' ) lcSocName[i] = tolower(sname[i]); else lcSocName[i] = '\0'; }
What happens is if you use a social with a long name like, 'marshmallow', and then try and use one like 'snicker', it's not nulling the end and so you end up with 'snickerllow'. Which, typically isn't a social.
Pages:<< prev 1 next >>