WebAppKit icon indicating copy to clipboard operation
WebAppKit copied to clipboard

Crash with certain path conditions.

Open BillyBooBob opened this issue 15 years ago • 0 comments

ProxyPass /wak http://127.0.0.1:9090/ ProxyPassReverse / http://127.0.0.1:9090/

Using URL http://localhost/wak works fine, but when using URL http://localhost/wak/ it draws an EXC_BAD_ACCESS. Traced through with debugger and it happens in TFRegEx.m at

  • (BOOL)matchesString:(NSString*)string { return (regexec(&expression,[string UTF8String],0,NULL,0)==0); }

Noticed also that string = nil when this happens.

BillyBooBob avatar Jan 17 '11 12:01 BillyBooBob