Skip to content
Snippets Groups Projects
Commit 7693b0a9 authored by rswindell's avatar rswindell
Browse files

Fixed segfault when decoding a source buffer not evenly divisible by 4.

parent 145137ff
No related branches found
No related tags found
No related merge requests found
......@@ -62,8 +62,9 @@ int uudecode(char *target, size_t tlen, const char *source, size_t slen)
break;
block=0;
while(block<len && wr<tlen && rd<slen) {
memset(cell,0,sizeof(cell));
/* Remove space bias */
for(i=0;i<sizeof(cell);i++) {
for(i=0;i<sizeof(cell) && rd<slen;i++) {
cell[i]=source[rd++];
if(cell[i]>=' ') cell[i]-=' ';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment