glimpse
glimpse copied to clipboard
This git repository contains contains no tags. Please publish a tag for each version of glimpse that was released, up to the latest 4.18.6 released in 2008 according to https://web.archive.org/web/20191206221705/http://webglimpse.net/....
Found in version: ``` $ glimpse -V This is glimpse version 4.18.7, 2015. ``` **How to reproduce the issue?** 1. Run an environment where libfl is not installed in the...
These changes are need to build on Linux. Signed-off-by: Luis R. Rodriguez [email protected]
Both a git clone of the repository and the zip file download do not include ./bin and ./lib directories. Their absence causes make to fail. Either the Makefile should be...
Environment: > gcc --version > Configured with: --prefix=/Applications/Xcode_6.4.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 > Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn) > Target: x86_64-apple-darwin14.5.0 > Thread model: posix I get lots of...
How do you think about to integrate the following small update suggestion into your source code repository? ``` diff diff --git a/glimpse/index/glimpse.h b/glimpse/index/glimpse.h index 317b8c8..2df9414 100644 --- a/glimpse/index/glimpse.h +++ b/glimpse/index/glimpse.h...
[An extra null pointer check is not needed](http://pubs.opengroup.org/onlinepubs/9699919799/functions/free.html) in functions like the following. - [mk_leaf](https://github.com/gvelez17/glimpse/blob/9557d48221aeaa64a43477c82ff6c66c94324081/agrep/parse.c#L35) - [my_free](https://github.com/gvelez17/glimpse/blob/9557d48221aeaa64a43477c82ff6c66c94324081/index/io.c#L662) - [search_index](https://github.com/gvelez17/glimpse/blob/9557d48221aeaa64a43477c82ff6c66c94324081/get_index.c#L1209) Would you like to add the following semantic patch approach to...
I have looked at a few source files for your current software. I have noticed that some checks for return codes are missing. Would you like to add more error...
I would like to point out that identifiers like "[`_GLIMPSE_H_`](https://github.com/gvelez17/glimpse/blob/9557d48221aeaa64a43477c82ff6c66c94324081/index/glimpse.h#L6)" and "[`_PATHS_H_`](https://github.com/gvelez17/glimpse/blob/9557d48221aeaa64a43477c82ff6c66c94324081/libtemplate/include/paths.h.in#L1)" [do not fit](https://www.securecoding.cert.org/confluence/display/seccode/DCL37-C.+Do+not+declare+or+define+a+reserved+identifier#DCL37-C.Donotdeclareordefineareservedidentifier-NoncompliantCodeExample%28HeaderGuard%29) to the expected naming convention of the C language standard. Would you like to adjust...