- 30 May, 2016 1 commit
-
-
Hisham authored
-
- 11 Mar, 2016 1 commit
-
-
Explorer09 authored
calloc() allows 'nmemb' or 'size' to be zero, in which case NULL may be returned. Letting htop die because of either argument being zero doesn't make sense. As a side note: As size_t is unsigned, compiler should be able to optimize conditional (nmemb > 0 && size > 0) to (nmemb && size). This theorically shouldn't increase code size too much.
-
- 03 Feb, 2016 2 commits
- 02 Feb, 2016 2 commits
- 31 Jan, 2016 1 commit
-
-
Hisham authored
-