summaryrefslogtreecommitdiff
path: root/libopie2/opiecore
authorzecke <zecke>2004-07-13 13:24:59 (UTC)
committer zecke <zecke>2004-07-13 13:24:59 (UTC)
commit74f19a502a513258f88a75e057a5998393e3c7f6 (patch) (side-by-side diff)
tree3e905a7b2dd6776e4e1f1204510b95599477965f /libopie2/opiecore
parent4a31bc0d4c9a30583200e866f21340448d41d1c2 (diff)
downloadopie-74f19a502a513258f88a75e057a5998393e3c7f6.zip
opie-74f19a502a513258f88a75e057a5998393e3c7f6.tar.gz
opie-74f19a502a513258f88a75e057a5998393e3c7f6.tar.bz2
Use snprintf to just be sure that we don't go over the buffer limit
Diffstat (limited to 'libopie2/opiecore') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_simpad.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiecore/device/odevice_simpad.cpp b/libopie2/opiecore/device/odevice_simpad.cpp
index 76f03a0..e62ea18 100644
--- a/libopie2/opiecore/device/odevice_simpad.cpp
+++ b/libopie2/opiecore/device/odevice_simpad.cpp
@@ -355,7 +355,7 @@ bool SIMpad::setDisplayBrightness ( int bright )
value = value << 8;
value += mask;
char writeCommand[100];
- const int count = sprintf( writeCommand, "0x%x\n", value );
+ const int count = snprintf( writeCommand, sizeof(writeCommand), "0x%x\n", value );
res = ( ::write ( fd, writeCommand, count ) != -1 );
::close ( fd );
}