Skip to content

Commit

Permalink
presence: increased the size of db update arrays in update_subs_db()
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Dec 8, 2017
1 parent 9e0fbfd commit 816d2cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/presence/subscribe.c
Expand Up @@ -372,8 +372,8 @@ int insert_subs_db(subs_t* s, int type)

int update_subs_db(subs_t* subs, int type)
{
db_key_t query_cols[3], update_keys[8];
db_val_t query_vals[3], update_vals[8];
db_key_t query_cols[3], update_keys[10];
db_val_t query_vals[3], update_vals[10];
int n_update_cols= 0;
int n_query_cols = 0;

Expand Down

0 comments on commit 816d2cd

Please sign in to comment.