mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 00:00:09 +00:00
* In unaligned.h, remove some unnecessary casts and mark the arg of the
get_unaligned functions as const * In event.c, use get_unaligned_uint32() in a couple of places to fix issues on architectures that don't allow unaligned access git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@92305 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -32,6 +32,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
#include "asterisk/linkedlists.h"
|
||||
#include "asterisk/lock.h"
|
||||
#include "asterisk/utils.h"
|
||||
#include "asterisk/unaligned.h"
|
||||
|
||||
/* Only use one thread for now to ensure ordered delivery */
|
||||
#define NUM_EVENT_THREADS 1
|
||||
@@ -392,7 +393,7 @@ enum ast_event_ie_type ast_event_iterator_get_ie_type(struct ast_event_iterator
|
||||
|
||||
uint32_t ast_event_iterator_get_ie_uint(struct ast_event_iterator *iterator)
|
||||
{
|
||||
return ntohl(*iterator->ie->ie_payload);
|
||||
return ntohl(get_unaligned_uint32(iterator->ie->ie_payload));
|
||||
}
|
||||
|
||||
const char *ast_event_iterator_get_ie_str(struct ast_event_iterator *iterator)
|
||||
@@ -416,7 +417,7 @@ uint32_t ast_event_get_ie_uint(const struct ast_event *event, enum ast_event_ie_
|
||||
|
||||
ie_val = ast_event_get_ie_raw(event, ie_type);
|
||||
|
||||
return ie_val ? ntohl(*ie_val) : 0;
|
||||
return ie_val ? ntohl(get_unaligned_uint32(ie_val)) : 0;
|
||||
}
|
||||
|
||||
const char *ast_event_get_ie_str(const struct ast_event *event, enum ast_event_ie_type ie_type)
|
||||
|
||||
Reference in New Issue
Block a user