Skip to content

Commit

Permalink
Bug 1586867 - Upgrade Firefox 71 to use NSPR 4.23. r=jcj NSPR_4_23_BE…
Browse files Browse the repository at this point in the history
…TA1 UPGRADE_NSPR_RELEASE

Differential Revision: https://phabricator.services.mozilla.com/D48414
  • Loading branch information
kaie committed Oct 7, 2019
1 parent 0f96497 commit 75d4c77
Show file tree
Hide file tree
Showing 393 changed files with 42,676 additions and 36,558 deletions.
2 changes: 1 addition & 1 deletion nsprpub/TAG-INFO
Original file line number Diff line number Diff line change
@@ -1 +1 @@
NSPR_4_22_RTM
NSPR_4_23_BETA1
6 changes: 3 additions & 3 deletions nsprpub/config/libc_r.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#define R_STRTOK_INIT_R() \
char *r_strtok_r=NULL

#define R_STRTOK_R(return,source,delim) \
#define R_STRTOK_R(return,source,delim) \
return=strtok_r(source,delim,&r_strtok_r)

#define R_STRTOK_NORET_R(source,delim) \
Expand Down Expand Up @@ -68,14 +68,14 @@

#define R_LOCALTIME_R(val) \
localtime_r(val,&r_localtime_r)

/***********/
/* crypt */
/***********/
#include <crypt.h>
#define R_CRYPT_INIT_R() \
CRYPTD r_cryptd_r; \
bzero(&r_cryptd_r,sizeof(CRYPTD))
bzero(&r_cryptd_r,sizeof(CRYPTD))

#define R_CRYPT_R(pass,salt) \
crypt_r(pass,salt,&r_cryptd_r)
Expand Down
Loading

0 comments on commit 75d4c77

Please sign in to comment.