https://issues.apache.org/bugzilla/show_bug.cgi?id=55696

--- Comment #4 from Christopher Schultz <ch...@christopherschultz.net> ---
So, SIGABRT?

I'm trying to reproduce in a test-case, but this doesn't seem to work:

#include <stdio.h>
#include <string.h>

int main(int argc, char *argv[]) {
  char *a = "Hello, world!";
  char buf1[50];

  strcpy(buf1, a);

  strcpy(buf1 + 7, buf1);

  printf("buf1 is now %s\n", buf1);
  return 0;
}

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to