summaryrefslogtreecommitdiffstats
path: root/udrv
diff options
context:
space:
mode:
authorPriti Aghera <paghera@broadcom.com>2012-04-06 14:43:25 -0700
committerMatthew Xie <mattx@google.com>2012-07-14 11:19:15 -0700
commitb110b5ff2dc873c23a2a61e49b189a404d148c50 (patch)
treef9312ff337a01716b0e8acc212204585834ba6c5 /udrv
parent5883f2fb3fff54e3d308e64108b634eb85e43c62 (diff)
downloadexternal_bluetooth_bluedroid-b110b5ff2dc873c23a2a61e49b189a404d148c50.zip
external_bluetooth_bluedroid-b110b5ff2dc873c23a2a61e49b189a404d148c50.tar.gz
external_bluetooth_bluedroid-b110b5ff2dc873c23a2a61e49b189a404d148c50.tar.bz2
HID-HOST:Fixed MAX_LINE_LENGTH
Patch to i) store/load/remove hid descriptors for bonded hid devices to the nvram ii)support set report Change-Id: I47fae85b0f26ec2c4e577550545dc9761a4d1bda
Diffstat (limited to 'udrv')
-rwxr-xr-x[-rw-r--r--]udrv/ulinux/unv_linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udrv/ulinux/unv_linux.c b/udrv/ulinux/unv_linux.c
index dc79fa4..3e98693 100644..100755
--- a/udrv/ulinux/unv_linux.c
+++ b/udrv/ulinux/unv_linux.c
@@ -677,7 +677,7 @@ int unv_read_key_iter( const char *path,
line = strtok(p, UNV_DELIM);
while (line)
{
- char key[128], value[128];
+ char key[128], value[1024];
char *needle;
needle = strchr(line, ' ');