Skip to content
Snippets Groups Projects
Commit b3f366ff authored by deuce's avatar deuce
Browse files

Add JSVALUE_TO_STRING() macro and ensure NULL returns on errors.

parent 630d800d
Branches
Tags
No related merge requests found
......@@ -128,15 +128,24 @@ extern int thread_suid_broken; /* NPTL is no longer broken */
size_t pos; \
const jschar *val; \
\
if((val=JS_GetStringCharsAndLength(cx, str, &len))) { \
if((ret=alloca(len+1))) { \
for(pos=0; pos<len; pos++) \
ret[pos]=val[pos]; \
ret[len]=0; \
ret=NULL; \
if(str != NULL) { \
if((val=JS_GetStringCharsAndLength(cx, str, &len))) { \
if((ret=(char *)alloca(len+1))) { \
for(pos=0; pos<len; pos++) \
ret[pos]=val[pos]; \
ret[len]=0; \
} \
} \
} \
}
#define JSVALUE_TO_STRING(cx, val, ret) \
{ \
JSString str=JS_ValueToString(cx, val); \
JSSTRING_TO_STRING(cx, str, ret); \
}
#endif
#ifdef USE_CRYPTLIB
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment