Browse Source

Switch to strotk() grr....

git-svn-id: svn://svn.berlios.de/openocd/trunk@2406 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
duane 15 years ago
parent
commit
9c05c92c14
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      src/helper/membuf.c

+ 4
- 2
src/helper/membuf.c View File

@@ -58,11 +58,13 @@ membuf_strtok(struct membuf *pBuf, const char *sep, void **pLast)
if (pBuf) {
pBuf->_strtoklast = NULL;
*pLast = pBuf;
return strtok_r(((char *)(pBuf->buf)), sep, &(pBuf->_strtoklast));
// this should be "strtok_r()" but windows lacks */
return strtok(((char *)(pBuf->buf)), sep);
} else {
// recover our pBuf
pBuf = *((struct membuf **)(pLast));
return strtok_r(NULL, sep, &(pBuf->_strtoklast));
// this should be "strtok_r()" but windows lacks */
return strtok( NULL, sep);
}
}



Loading…
Cancel
Save