Displaying 2 results from an estimated 2 matches for "4346175".
2009 Aug 24
0
[LLVMdev] Regular Expression lib support
...illa/show_bug.cgi?id=497
https://wwws.clamav.net/bugzilla/show_bug.cgi?id=598
https://wwws.clamav.net/bugzilla/show_bug.cgi?id=635
https://wwws.clamav.net/bugzilla/show_bug.cgi?id=658
https://wwws.clamav.net/bugzilla/show_bug.cgi?id=679
http://bugs.opensolaris.org/bugdatabase/printableBug.do?bug_id=4346175
That is why in ClamAV we are using the OpenBSD implementation of
regcomp/regexec, regardless if the system has a regcomp/regexec available.
The code is fairly small (~100k), BSD licensed, easy to make it portable
(memmove->memcpy, pull in strlcpy impl., etc.) and doesn't explode in
executio...
2009 Aug 24
8
[LLVMdev] Regular Expression lib support
On Aug 23, 2009, at 9:01 PM, Daniel Berlin wrote:
>> 2. Use POSIX regcomp facilities. This implies importing some
>> implementation of this interface, e.g., Windows. On Linux, BSD, etc.
>> we would try to use the platform version if available (and non-
>> buggy).
>
> Don't do it.
> They are ridiculous slow, and posix made some really dumb choices in
>