Staging: speakup: &&/|| confusion in silent_store()

Fix test: the branch is always taken.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: stable <stable@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by roel kluin and committed by Greg Kroah-Hartman e7bf352f e71a7fd2

+1 -1
+1 -1
drivers/staging/speakup/kobjects.c
··· 332 unsigned long flags; 333 334 len = strlen(buf); 335 - if (len > 0 || len < 3) { 336 ch = buf[0]; 337 if (ch == '\n') 338 ch = '0';
··· 332 unsigned long flags; 333 334 len = strlen(buf); 335 + if (len > 0 && len < 3) { 336 ch = buf[0]; 337 if (ch == '\n') 338 ch = '0';