]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: speakup_soft: Fix reading of init string
authorBen Hutchings <ben@decadent.org.uk>
Sun, 16 Sep 2012 03:18:50 +0000 (04:18 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 17 Sep 2012 12:32:50 +0000 (05:32 -0700)
softsynth_read() reads a character at a time from the init string;
when it finds the null terminator it sets the initialized flag but
then repeats the last character.

Additionally, if the read() buffer is not big enough for the init
string, the next read() will start reading from the beginning again.
So the caller may never progress to reading anything else.

Replace the simple initialized flag with the current position in
the init string, carried over between calls.  Switch to reading
real data once this reaches the null terminator.

(This assumes that the length of the init string can't change, which
seems to be the case.  Really, the string and position belong together
in a per-file private struct.)

Tested-by: Samuel Thibault <sthibault@debian.org>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/speakup/speakup_soft.c

index 2a676107fa4d4ea92e2e327a8ba439c8fc5fbaab..e2f5c81e75483e82fb0ae84b04cf15238492ae4f 100644 (file)
@@ -40,7 +40,7 @@ static int softsynth_is_alive(struct spk_synth *synth);
 static unsigned char get_index(void);
 
 static struct miscdevice synth_device;
-static int initialized;
+static int init_pos;
 static int misc_registered;
 
 static struct var_t vars[] = {
@@ -194,7 +194,7 @@ static int softsynth_close(struct inode *inode, struct file *fp)
        unsigned long flags;
        spk_lock(flags);
        synth_soft.alive = 0;
-       initialized = 0;
+       init_pos = 0;
        spk_unlock(flags);
        /* Make sure we let applications go before leaving */
        speakup_start_ttys();
@@ -239,13 +239,8 @@ static ssize_t softsynth_read(struct file *fp, char *buf, size_t count,
                        ch = '\x18';
                } else if (synth_buffer_empty()) {
                        break;
-               } else if (!initialized) {
-                       if (*init) {
-                               ch = *init;
-                               init++;
-                       } else {
-                               initialized = 1;
-                       }
+               } else if (init[init_pos]) {
+                       ch = init[init_pos++];
                } else {
                        ch = synth_buffer_getc();
                }