From 39b44bbca771e140e131c66c3e250fc15a3db6d0 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 16 Jul 2011 13:28:59 +0200 Subject: [PATCH] gsm 04.80: ussd_request.text can contain 0xff, needs to be unsigned Found by Smatch --- include/osmocom/gsm/gsm0480.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osmocom/gsm/gsm0480.h b/include/osmocom/gsm/gsm0480.h index d6626d6..f6c3734 100644 --- a/include/osmocom/gsm/gsm0480.h +++ b/include/osmocom/gsm/gsm0480.h @@ -8,7 +8,7 @@ #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; }; -- 2.20.1