Chameleon

Chameleon Commit Details

Date:2012-09-11 16:55:49 (11 years 7 months ago)
Author:Cosmosis Jones
Commit:2058
Parents: 2057
Message:merged cparms security fixes
Changes:
M/trunk/i386/libsaio/nvidia.c
M/trunk/i386/libsaio/xml.c

File differences

trunk/i386/libsaio/xml.c
261261
262262
263263
264
264
265265
266266
267267
......
12231223
12241224
12251225
1226
1226
int i;
s++;
for ( i = 0; i < sizeof(ents); i++)
for ( i = 0; i < sizeof(ents)/sizeof(ents[0]); i++)
{
if ( strncmp(s, ents[i].name, ents[i].nameLen) == 0 )
{
return true;
}
return false;
}
}
trunk/i386/libsaio/nvidia.c
33263326
33273327
33283328
3329
33293330
33303331
memcpy(stringdata, (uint8_t*)devprop_generate_string(string), string->length);
stringlength = string->length;
free(rom);
return true;
}

Archive Download the corresponding diff file

Revision: 2058