fixed array subscript

This commit is contained in:
Jeff Hill
2003-05-16 13:52:10 +00:00
parent 69a8bc6fd7
commit 9a0f23dfdf

View File

@@ -501,7 +501,7 @@ gddStatus gdd::copyStuff(const gdd* dd,int ctype)
const aitString * pSrc =
static_cast <const aitString *> ( dd->dataPointer() );
for ( unsigned j=0; j < nElem; j++ ) {
pStrVec[i] = pSrc[i];
pStrVec[j] = pSrc[j];
}
destruct->reference();
setData ( pStrVec );