Few LCC memory fixes.
This commit is contained in:
parent
7c2dd01873
commit
76ec9fb6bd
2 changed files with 4 additions and 2 deletions
|
@ -34,8 +34,10 @@ void UpdatePaths( const char *lccBinary )
|
|||
{
|
||||
char basepath[ 1024 ];
|
||||
char *p;
|
||||
size_t basepathsz = sizeof( basepath ) - 1;
|
||||
|
||||
strncpy( basepath, lccBinary, 1024 );
|
||||
strncpy( basepath, lccBinary, basepathsz );
|
||||
basepath[basepathsz] = 0;
|
||||
p = strrchr( basepath, PATH_SEP );
|
||||
|
||||
if( p )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue