summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Victor <andrew.victor@mxit.com>2016-06-03 12:01:34 -0500
committerAndrew Victor <andrew.victor@mxit.com>2016-06-03 12:01:34 -0500
commit3dd7cc8947b1f3b239bb10c66dee9bc47be2cb70 (patch)
treee660efde86190a2d2fe5591bbf59937c4b963420
parent20506be43fc1ff3d99ab18a490088a39d3bc8d88 (diff)
downloadpidgin-3dd7cc8947b1f3b239bb10c66dee9bc47be2cb70.tar.gz
Fix for TALOS-CAN-0143
-rw-r--r--libpurple/protocols/mxit/protocol.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/libpurple/protocols/mxit/protocol.c b/libpurple/protocols/mxit/protocol.c
index 235e13abec..02b1e84b85 100644
--- a/libpurple/protocols/mxit/protocol.c
+++ b/libpurple/protocols/mxit/protocol.c
@@ -1993,6 +1993,12 @@ static void mxit_parse_cmd_suggestcontacts( struct MXitSession* session, struct
* userid \1 contactType \1 value0 \1 value1 ... valueN
*/
+ /* ensure that record[0] contacts the minumum number of fields */
+ if ( records[0]->fcount < 4 ) {
+ purple_debug_error( MXIT_PLUGIN_ID, "Insufficient number of fields in suggest contacts response. fields=%i", records[0]->fcount );
+ return;
+ }
+
/* the type of results */
searchType = atoi( records[0]->fields[0]->data );
@@ -2002,11 +2008,24 @@ static void mxit_parse_cmd_suggestcontacts( struct MXitSession* session, struct
/* set the count for attributes */
count = atoi( records[0]->fields[3]->data );
+ /* ensure that record[0] contains the specified number of attributes */
+ if ( records[0]->fcount < ( 4 + count ) ) {
+ purple_debug_error( MXIT_PLUGIN_ID, "Insufficient number of fields in suggest contacts response. fields=%i attributes=%i", records[0]->fcount, count );
+ return;
+ }
+
for ( i = 1; i < rcount; i ++ ) {
struct record* rec = records[i];
struct MXitProfile* profile = g_new0( struct MXitProfile, 1 );
int j;
+ /* ensure that each result contains the specified number of attributes */
+ if ( rec->fcount != ( 2 + count ) ) {
+ purple_debug_error( MXIT_PLUGIN_ID, "Insufficient number of fields in suggest contacts response. fields=%i attributes=%i", rec->fcount, count );
+ g_free( profile );
+ continue;
+ }
+
g_strlcpy( profile->userid, rec->fields[0]->data, sizeof( profile->userid ) );
// TODO: ContactType - User or Service