Rob Godfrey created PROTON-76:
---------------------------------

             Summary: Suspiciously insufficient looking buffer allocation in 
messenger.c
                 Key: PROTON-76
                 URL: https://issues.apache.org/jira/browse/PROTON-76
             Project: Qpid Proton
          Issue Type: Bug
          Components: proton-c
            Reporter: Rob Godfrey


Lines 541-549:


  if (len > 1 && address[0] == '~' && address[1] == '/') {
    char buf[len + strlen(mng->name) + 4];
    sprintf(buf, "amqp://%s/%s", mng->name, address);
    pn_message_set_reply_to(msg, buf);
  } else if (len == 0) {
    char buf[strlen(mng->name) + 4];
    sprintf(buf, "amqp://%s", mng->name);
    pn_message_set_reply_to(msg, buf);
  }

should the first "4" not be an "8" and the second a "7"?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to