Added comment to strdup() noting that t he caller must use delete[]

to free the memory
This commit is contained in:
troy%netscape.com 1998-12-22 19:01:14 +00:00
Родитель e058147289
Коммит 4c1ca751b4
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -102,6 +102,8 @@ public:
static PRInt32 strncasecmp(const PRUnichar* s1, const char* s2,
PRInt32 aMaxLen);
// Note: uses new[] to allocate memory, so you must use delete[] to
// free the memory
static PRUnichar* strdup(const PRUnichar* str);
/// Compute a hashcode for a ucs2 string

Просмотреть файл

@ -102,6 +102,8 @@ public:
static PRInt32 strncasecmp(const PRUnichar* s1, const char* s2,
PRInt32 aMaxLen);
// Note: uses new[] to allocate memory, so you must use delete[] to
// free the memory
static PRUnichar* strdup(const PRUnichar* str);
/// Compute a hashcode for a ucs2 string