From cad0cc552f9956af3fa90d12de443dabe5c7c320 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Fri, 15 Sep 2017 19:15:05 +0200 Subject: smpp34_structs.h: Fix truncated output in str_tlv_id MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes compilation warning below: %s’ directive output may be truncated writing between 8 and 33 bytes into a regio n of size 30 [-Wformat-truncation=] snprintf(buff, SMALL_BUFF, "%s", ^~ /home/pespin/dev/sysmocom/bin/../git/libsmpp34/src/smpp34_params.c:136:5: note: ‘ snprintf’ output between 9 and 34 bytes into a destination of size 30 snprintf(buff, SMALL_BUFF, "%s", ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #define OPERACION( p_tlv_id ) (tlv_id == p_tlv_id)?#p_tlv_id: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #include "def_list/tlv_id.list" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Reserved" ~~~~~~~~~~ #undef OPERACION ~~~~~~~~~~~~~~~~ ); Change-Id: Ie2ba6182eb0cdd98cadb8317aef49141244aa92d --- src/smpp34_structs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpp34_structs.h b/src/smpp34_structs.h index 6b9f41e..71d22cd 100644 --- a/src/smpp34_structs.h +++ b/src/smpp34_structs.h @@ -23,7 +23,7 @@ #ifndef _STB_H_ #define _STB_H_ -#define SMALL_BUFF 30 +#define SMALL_BUFF 34 /* Identify PDUs ident ********************************************************/ #define MAX_TLV_SIZE 1024 #define MAX_DAD_SIZE 21 -- cgit v1.2.3