- Oct 27, 2017
-
-
Sven Willner authored
-
Sven Willner authored
-
- Sep 01, 2017
-
-
Sven Willner authored
-
Sven Willner authored
-
- Aug 24, 2017
-
-
Sven Willner authored
-
- Aug 23, 2017
-
-
Birte Kristina Friesel authored
-
Birte Kristina Friesel authored
Also, restore the previous terminal mode on exit
-
- Aug 22, 2017
-
-
Birte Kristina Friesel authored
-
- Aug 21, 2017
-
- Aug 19, 2017
-
-
Birte Kristina Friesel authored
-
Birte Kristina Friesel authored
-
- Aug 12, 2017
-
- Aug 10, 2017
-
-
Birte Kristina Friesel authored
Turns out that it is undefined behaviour to pass a value to isctype functions which does not fit inside a char. Closes #312
-
- Aug 05, 2017
-
-
Birte Kristina Friesel authored
(cf #309)
-
- Jul 25, 2017
-
- Jun 21, 2017
-
-
Birte Kristina Friesel authored
-
- Jun 20, 2017
-
-
Birte Kristina Friesel authored
-
- Jun 19, 2017
-
-
Birte Kristina Friesel authored
Closes #303
-
- Jun 18, 2017
-
-
Birte Kristina Friesel authored
closes #302
-
- Jun 06, 2017
-
-
Birte Kristina Friesel authored
- Jun 01, 2017
-
-
Birte Kristina Friesel authored
-
- Apr 16, 2017
-
-
Birte Kristina Friesel authored
closes #270
-
Birte Kristina Friesel authored
-
Birte Kristina Friesel authored
-
- Apr 06, 2017
-
-
Olof-Joachim Frahm authored
-
- Apr 05, 2017
-
-
Olof-Joachim Frahm authored
-
Olof-Joachim Frahm authored
-
Olof-Joachim Frahm authored
-
- Apr 04, 2017
-
- Apr 03, 2017
-
-
Birte Kristina Friesel authored
-
- Apr 02, 2017
-
-
Birte Kristina Friesel authored
-
derf authored
Check malloc return value for NULL.
-
derf authored
Fixed memory leak on file name collision.
-
derf authored
Always terminate strncpy results with '\0'.
-
derf authored
Avoid out of boundary read on empty/broken file.
-
Tobias Stoeckmann authored
If malloc cannot allocate enough memory, it could return NULL. This is not necessarily true for default Linux settings, but can be provoked there as well by adjusting proc entries. Other systems like the *BSD ones definitely do this. The function _emalloc exists for exactly this purpose, so use it instead of calling malloc directly. Signed-off-by:
Tobias Stoeckmann <tobias@stoeckmann.org>
-
Tobias Stoeckmann authored
If feh_unique_filename encounters a file that already exists, the memory for the temporary filename is not released. As this happens in /tmp at some code places, an attacker could use this to spray the memory of feh, or simply triggering an out of memory condition. Signed-off-by:
Tobias Stoeckmann <tobias@stoeckmann.org>
-
Tobias Stoeckmann authored
If ereadfile encounters an empty file or the file could not be read, an out ouf boundary read (and possible write) occurs. Always check the return value of fread to be > 0 before processing the result buffer. Signed-off-by:
Tobias Stoeckmann <tobias@stoeckmann.org>
-
Tobias Stoeckmann authored
The strncpy function does not guarantee to end the resulting character sequence with a terminating nul character if not enough space is available. This could be triggered by supplying a sufficiently long output_file option. Signed-off-by:
Tobias Stoeckmann <tobias@stoeckmann.org>
-