gsm 04.80: ussd_request.text can contain 0xff, needs to be unsigned
authorHarald Welte <laforge@gnumonks.org>
Sat, 16 Jul 2011 11:28:59 +0000 (13:28 +0200)
committerHarald Welte <laforge@gnumonks.org>
Sat, 16 Jul 2011 11:28:59 +0000 (13:28 +0200)
Found by Smatch

include/osmocom/gsm/gsm0480.h

index d6626d6..f6c3734 100644 (file)
@@ -8,7 +8,7 @@
 #define MAX_LEN_USSD_STRING    31
 
 struct ussd_request {
 #define MAX_LEN_USSD_STRING    31
 
 struct ussd_request {
-       char text[MAX_LEN_USSD_STRING + 1];
+       uint8_t text[MAX_LEN_USSD_STRING + 1];
        uint8_t transaction_id;
        uint8_t invoke_id;
 };
        uint8_t transaction_id;
        uint8_t invoke_id;
 };