summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/smsutil.c11
-rw-r--r--src/smsutil.h1
-rw-r--r--src/stkutil.c13
3 files changed, 13 insertions, 12 deletions
diff --git a/src/smsutil.c b/src/smsutil.c
index 3153a37b..5e1d233b 100644
--- a/src/smsutil.c
+++ b/src/smsutil.c
@@ -351,7 +351,8 @@ gboolean sms_encode_scts(const struct sms_scts *in, unsigned char *pdu,
if (in->second > 59)
return FALSE;
- if ((in->timezone > MAX_TIMEZONE) || (in->timezone < MIN_TIMEZONE))
+ if ((in->timezone > MAX_TIMEZONE || in->timezone < MIN_TIMEZONE) &&
+ in->has_timezone == TRUE)
return FALSE;
pdu = pdu + *offset;
@@ -363,6 +364,11 @@ gboolean sms_encode_scts(const struct sms_scts *in, unsigned char *pdu,
pdu[4] = ((in->minute / 10) & 0x0f) | (((in->minute % 10) & 0x0f) << 4);
pdu[5] = ((in->second / 10) & 0x0f) | (((in->second % 10) & 0x0f) << 4);
+ if (in->has_timezone == FALSE) {
+ pdu[6] = 0xff;
+ goto out;
+ }
+
timezone = abs(in->timezone);
pdu[6] = ((timezone / 10) & 0x07) | (((timezone % 10) & 0x0f) << 4);
@@ -370,6 +376,7 @@ gboolean sms_encode_scts(const struct sms_scts *in, unsigned char *pdu,
if (in->timezone < 0)
pdu[6] |= 0x8;
+out:
*offset += 7;
return TRUE;
@@ -441,6 +448,8 @@ gboolean sms_decode_scts(const unsigned char *pdu, int len,
if ((out->timezone > MAX_TIMEZONE) || (out->timezone < MIN_TIMEZONE))
return FALSE;
+ out->has_timezone = TRUE;
+
return TRUE;
}
diff --git a/src/smsutil.h b/src/smsutil.h
index 4b053136..4b6159fd 100644
--- a/src/smsutil.h
+++ b/src/smsutil.h
@@ -223,6 +223,7 @@ struct sms_scts {
guint8 hour;
guint8 minute;
guint8 second;
+ gboolean has_timezone;
gint8 timezone;
};
diff --git a/src/stkutil.c b/src/stkutil.c
index a2114620..01a00212 100644
--- a/src/stkutil.c
+++ b/src/stkutil.c
@@ -4548,7 +4548,6 @@ static gboolean build_dataobj_datetime_timezone(struct stk_tlv_builder *tlv,
const void *data, gboolean cr)
{
const struct sms_scts *scts = data;
- struct sms_scts timestamp;
unsigned char value[7];
int offset = 0;
unsigned char tag = STK_DATA_OBJECT_TYPE_DATETIME_TIMEZONE;
@@ -4556,16 +4555,8 @@ static gboolean build_dataobj_datetime_timezone(struct stk_tlv_builder *tlv,
if (scts->month == 0 && scts->day == 0)
return TRUE;
- /* Time zone information is optional */
- if (scts->timezone == (gint8) 0xff) {
- memcpy(&timestamp, scts, sizeof(timestamp));
- timestamp.timezone = 0;
- if (sms_encode_scts(&timestamp, value, &offset) != TRUE)
- return FALSE;
- value[6] = 0xff;
- } else
- if (sms_encode_scts(scts, value, &offset) != TRUE)
- return FALSE;
+ if (sms_encode_scts(scts, value, &offset) != TRUE)
+ return FALSE;
return stk_tlv_builder_open_container(tlv, cr, tag, FALSE) &&
stk_tlv_builder_append_bytes(tlv, value, 7) &&