All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@oracle.com>
To: daniel.ritz-ml@swissonline.ch
Cc: linux-input@vger.kernel.org
Subject: re: usbtouchscreen: version 0.4
Date: Sat, 6 Jun 2015 19:52:13 +0300	[thread overview]
Message-ID: <20150606165213.GA28331@mwanda> (raw)

Hi Daniel,

I had a question about patch 5d8926658ce4: "usbtouchscreen: version 0.4"
from Jul 31, 2006.

drivers/input/touchscreen/usbtouchscreen.c
  1326  static void usbtouch_process_multi(struct usbtouch_usb *usbtouch,
  1327                                     unsigned char *pkt, int len)
  1328  {
  1329          unsigned char *buffer;
  1330          int pkt_len, pos, buf_len, tmp;
  1331  
  1332          /* process buffer */
  1333          if (unlikely(usbtouch->buf_len)) {
  1334                  /* try to get size */
  1335                  pkt_len = usbtouch->type->get_pkt_len(
  1336                                  usbtouch->buffer, usbtouch->buf_len);

->get_pkt_len() returns -1 on error.

  1337  
  1338                  /* drop? */
  1339                  if (unlikely(!pkt_len))
  1340                          goto out_flush_buf;
  1341  
  1342                  /* need to append -pkt_len bytes before able to get size */
  1343                  if (unlikely(pkt_len < 0)) {
  1344                          int append = -pkt_len;

But then we treat the -1 as a length of 1.  Is that really what we
intended?

  1345                          if (unlikely(append > len))
  1346                                 append = len;
  1347                          if (usbtouch->buf_len + append >= usbtouch->type->rept_size)
  1348                                  goto out_flush_buf;
  1349                          memcpy(usbtouch->buffer + usbtouch->buf_len, pkt, append);
  1350                          usbtouch->buf_len += append;
  1351  
  1352                          pkt_len = usbtouch->type->get_pkt_len(
  1353                                          usbtouch->buffer, usbtouch->buf_len);
  1354                          if (pkt_len < 0)
  1355                                  return;
  1356                  }
  1357  
  1358                  /* append */
  1359                  tmp = pkt_len - usbtouch->buf_len;

regards,
dan carpenter

             reply	other threads:[~2015-06-06 16:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-06 16:52 Dan Carpenter [this message]
2015-06-07  0:25 ` usbtouchscreen: version 0.4 Daniel Ritz
2015-06-07 12:12   ` Dan Carpenter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150606165213.GA28331@mwanda \
    --to=dan.carpenter@oracle.com \
    --cc=daniel.ritz-ml@swissonline.ch \
    --cc=linux-input@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.