w...@chromium.org
unread,Dec 5, 2012, 7:10:07 PM12/5/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ba...@adobe.com, ma...@chromium.org, chromium...@chromium.org, mmae...@adobe.com
badea: could you try this NSS patch? ('PRWord' is a type equivalent to
intptr_t.) Thanks.
Index: third_party/nss/mozilla/security/nss/lib/certhigh/certvfy.c
===================================================================
--- third_party/nss/mozilla/security/nss/lib/certhigh/certvfy.c (revision
171358)
+++ third_party/nss/mozilla/security/nss/lib/certhigh/certvfy.c (working
copy)
@@ -333,14 +333,14 @@
#define LOG_ERROR_OR_EXIT(log,cert,depth,arg) \
if ( log != NULL ) { \
- cert_AddToVerifyLog(log, cert, PORT_GetError(), depth, (void *)arg); \
+ cert_AddToVerifyLog(log, cert, PORT_GetError(), depth, (void
*)(PRWord)arg); \
} else { \
goto loser; \
}
#define LOG_ERROR(log,cert,depth,arg) \
if ( log != NULL ) { \
- cert_AddToVerifyLog(log, cert, PORT_GetError(), depth, (void *)arg); \
+ cert_AddToVerifyLog(log, cert, PORT_GetError(), depth, (void
*)(PRWord)arg); \
}
static SECStatus
https://codereview.chromium.org/11438010/