Diff between 962688893d95e77b7a37e9fcfa0f3d44b771885d and 3b6f4afa8c8b852d0ed09ed06b5067701ede0cb8

Changed Files

File Additions Deletions Status
thermometer/thermometer.c +2 -1 modified

Full Patch

diff --git a/thermometer/thermometer.c b/thermometer/thermometer.c
index 914f77c..087662e 100644
--- a/thermometer/thermometer.c
+++ b/thermometer/thermometer.c
@@ -50,6 +50,7 @@
 
 #define VALID_RANGE_DESC_SIZE	4
 #define TEMPERATURE_TYPE_SIZE	1
+#define MEASUREMENT_INTERVAL_SIZE	2
 
 struct thermometer {
 	DBusConnection		*conn;		/* The connection to the bus */
@@ -474,7 +475,7 @@ static void read_interval_cb(guint8 status, const guint8 *pdu, guint16 len,
 							gpointer user_data)
 {
 	struct characteristic *ch = user_data;
-	uint8_t value[ATT_MAX_MTU];
+	uint8_t value[MEASUREMENT_INTERVAL_SIZE];
 	uint16_t interval;
 	ssize_t vlen;