summaryrefslogtreecommitdiff
path: root/pjsip
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-05-28 11:49:46 +0000
committerBenny Prijono <bennylp@teluu.com>2007-05-28 11:49:46 +0000
commit7c28b42ad3fd73d9d7f07b0ebfd3b7f501d71a9f (patch)
tree7a03c60792cca873cba6f1b5255e932fec4bc861 /pjsip
parent26be3e55bedc2f31559151d2608aa338badfbbed (diff)
Fixed ticket #304: Memory alignment error for hash entry buffer causing crash on ARM (thanks ChenHuan)
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1307 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip')
-rw-r--r--pjsip/src/pjsip/sip_ua_layer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjsip/src/pjsip/sip_ua_layer.c b/pjsip/src/pjsip/sip_ua_layer.c
index be89e2b6..cff58133 100644
--- a/pjsip/src/pjsip/sip_ua_layer.c
+++ b/pjsip/src/pjsip/sip_ua_layer.c
@@ -62,7 +62,7 @@ struct dlg_set
PJ_DECL_LIST_MEMBER(struct dlg_set);
/* This is the buffer to store this entry in the hash table. */
- char ht_entry[PJ_HASH_ENTRY_SIZE];
+ pj_hash_entry_buf ht_entry;
/* List of dialog in this dialog set. */
struct dlg_set_head dlg_list;