| 6958 | |
| 6959 | template<typename T, int S> |
| 6960 | ResultType ScriptItemList<T,S>::Alloc(int aAllocCount) |
| 6961 | { |
| 6962 | T **temp = (T **)realloc(mItem, aAllocCount * sizeof(T *)); // If passed NULL, realloc() will do a malloc(). |
| 6963 | if (!temp) |
| 6964 | return FAIL; |
| 6965 | mItem = temp; |
| 6966 | mCountMax = aAllocCount; |
| 6967 | return OK; |
| 6968 | } |
| 6969 | |
| 6970 | |
| 6971 |