From 59b5b7e14cbb43b7dd52b746fb565e8dda695f1b Mon Sep 17 00:00:00 2001 From: marshmellow42 Date: Thu, 15 Oct 2015 01:31:52 -0400 Subject: [PATCH] PCF-fix bytepos range from 0-3 to 0-15 --- client/cmdlfpcf7931.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdlfpcf7931.c b/client/cmdlfpcf7931.c index 63333b97..636db483 100644 --- a/client/cmdlfpcf7931.c +++ b/client/cmdlfpcf7931.c @@ -137,7 +137,7 @@ int CmdLFPCF7931Write(const char *Cmd){ if ( param_getdec(Cmd, 0, &block) ) return usage_pcf7931_write(); if ( param_getdec(Cmd, 1, &bytepos) ) return usage_pcf7931_write(); - if ( (block > 7) || (bytepos > 3) ) return usage_pcf7931_write(); + if ( (block > 7) || (bytepos > 15) ) return usage_pcf7931_write(); data = param_get8ex(Cmd, 2, 0, 16); -- 2.39.2