Skip to content
Snippets Groups Projects
Commit 163bd7df authored by rswindell's avatar rswindell
Browse files

Fixed memory leak in smb_hashstr() - whoops.

parent 2281575d
Branches
Tags
No related merge requests found
......@@ -165,7 +165,8 @@ static char* strip_chars(uchar* str, uchar* set)
*(dst++)=*src;
}
*dst=0;
free(tmp);
return(str);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment