From 09fe3e314bd92cf03adaab2bc6e807345d0419c9 Mon Sep 17 00:00:00 2001 From: suzuki toshiya Date: Thu, 6 Jan 2011 12:26:30 +0900 Subject: [PATCH] use ft_strchr() instead of index() --- include/freetype/config/ftstdlib.h | 1 + src/base/ftdbgmem.c | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/include/freetype/config/ftstdlib.h b/include/freetype/config/ftstdlib.h index 30ec14e74..db6b2650a 100644 --- a/include/freetype/config/ftstdlib.h +++ b/include/freetype/config/ftstdlib.h @@ -81,6 +81,7 @@ #define ft_memmove memmove #define ft_memset memset #define ft_strcat strcat +#define ft_strchr strchr #define ft_strcmp strcmp #define ft_strcpy strcpy #define ft_strlen strlen diff --git a/src/base/ftdbgmem.c b/src/base/ftdbgmem.c index 3658a0b29..2bea2ff2f 100644 --- a/src/base/ftdbgmem.c +++ b/src/base/ftdbgmem.c @@ -525,7 +525,7 @@ return -1; /* basename not found */ - if ( NULL == ( c = strstr( c, source_basename ) ) ) + if ( NULL == ( c = ft_strstr( c, source_basename ) ) ) return -1; /* found position was substring */ @@ -542,9 +542,9 @@ return -1; /* invalid syntax without max memory space */ - if ( NULL == index( c + 1, ':' ) ) + if ( NULL == ft_strchr( c + 1, ':' ) ) return -1; - c = index( c + 1, ':' ); + c = ft_strchr( c + 1, ':' ); if ( !ft_isdigit( c[1] ) ) return -1;