Cotix / cReddit

CLI Reddit client written in C. Oh, crossplatform too!
Other
96 stars 14 forks source link

libreddit: Fix off-by-one error in morechildren call #48

Closed mkilgore closed 11 years ago

mkilgore commented 11 years ago

This patch fixes an off-by-one error in the morechildren call. The error itself was caused by not subtracting one from the number telling us the size of an array. The result is that the program tries to call free on a location past the end of the array, which may end-up causing a seg-fault.