Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2653)

Unified Diff: nspr/pr/src/misc/prtrace.c

Issue 200653003: Update to NSPR 4.10.4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « nspr/pr/src/misc/prnetdb.c ('k') | nspr/pr/src/pthreads/ptio.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nspr/pr/src/misc/prtrace.c
===================================================================
--- nspr/pr/src/misc/prtrace.c (revision 257452)
+++ nspr/pr/src/misc/prtrace.c (working copy)
@@ -222,7 +222,7 @@
break;
}
qnp = (QName *)PR_NEXT_LINK( &qnp->link );
- } while( qnp != (QName *)PR_LIST_HEAD( &qNameList ));
+ } while( qnp != (QName *)&qNameList );
}
/*
** If we did not find a matching QName,
@@ -251,7 +251,7 @@
*/
PR_ASSERT( strcmp(rnp->name, rName));
rnp = (RName *)PR_NEXT_LINK( &rnp->link );
- } while( rnp != (RName *)PR_LIST_HEAD( &qnp->rNameList ));
+ } while( rnp != (RName *)&qnp->rNameList );
}
/* Get a new RName structure; initialize its members */
« no previous file with comments | « nspr/pr/src/misc/prnetdb.c ('k') | nspr/pr/src/pthreads/ptio.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698