Both lirc_imon and lirc_sasem were causing gcc to complain about the
possible use of uninitialized variables.
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
        struct imon_context *context;
        const unsigned char vfd_packet6[] = {
                0x01, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF };
-       int *data_buf;
+       int *data_buf = NULL;
 
        context = file->private_data;
        if (!context) {
 
        int i;
        int retval = 0;
        struct sasem_context *context;
-       int *data_buf;
+       int *data_buf = NULL;
 
        context = (struct sasem_context *) file->private_data;
        if (!context) {