nss-3.110.0-2.fc43

List of Findings

Error: SHELLCHECK_WARNING (CWE-156): [#def1]
/usr/bin/nspr-config:145:21: warning[SC2046]: Quote this to prevent word splitting.
#  143|           fi
#  144|         done
#  145|->       echo $libdirs `pkg-config --variable=os_libs nspr`
#  146|   fi      
#  147|   

Error: SHELLCHECK_WARNING: [#def2]
/usr/bin/setup-nsssysinit.sh:62:10: warning[SC3037]: In POSIX sh, echo flags are undefined.
#   60|       ;;
#   61|     status )
#   62|->     echo -n 'NSS sysinit is '
#   63|       sysinit_enabled && echo 'enabled' || echo 'disabled'
#   64|       ;;

Error: COMPILER_WARNING (CWE-563): [#def3]
nss-3.110/nspr/lib/ds/plvrsion.c: scope_hint: In function ‘libVersionPoint’
nss-3.110/nspr/lib/ds/plvrsion.c:87:15: warning[-Wunused-but-set-variable]: variable ‘dummy’ set but not used
#   87 |   const char* dummy;
#      |               ^~~~~
#   85|      * from being optimized away as unused variables.
#   86|      */
#   87|->   const char* dummy;
#   88|   
#   89|     dummy = rcsid;

Error: COMPILER_WARNING (CWE-563): [#def4]
nss-3.110/nspr/lib/libc/src/plvrsion.c: scope_hint: In function ‘libVersionPoint’
nss-3.110/nspr/lib/libc/src/plvrsion.c:87:15: warning[-Wunused-but-set-variable]: variable ‘dummy’ set but not used
#   87 |   const char* dummy;
#      |               ^~~~~
#   85|      * from being optimized away as unused variables.
#   86|      */
#   87|->   const char* dummy;
#   88|   
#   89|     dummy = rcsid;

Error: COMPILER_WARNING (CWE-563): [#def5]
nss-3.110/nspr/pr/src/io/pripv6.c: scope_hint: In function ‘Ipv6ToIpv4SocketAccept’
nss-3.110/nspr/pr/src/io/pripv6.c:133:12: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  133 |   PRStatus rv;
#      |            ^~
#  131|                                                         PRNetAddr* addr,
#  132|                                                         PRIntervalTime timeout) {
#  133|->   PRStatus rv;
#  134|     PRFileDesc* newfd;
#  135|     PRFileDesc* newstack;

Error: COMPILER_WARNING (CWE-563): [#def6]
nss-3.110/nspr/pr/src/io/pripv6.c: scope_hint: In function ‘Ipv6ToIpv4SocketAcceptRead’
nss-3.110/nspr/pr/src/io/pripv6.c:172:12: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  172 |   PRStatus rv;
#      |            ^~
#  170|                                                         PRIntervalTime timeout) {
#  171|     PRInt32 nbytes;
#  172|->   PRStatus rv;
#  173|     PRNetAddr tmp_ipv4addr;
#  174|     PRFileDesc* newstack;

Error: COMPILER_WARNING (CWE-563): [#def7]
nss-3.110/nspr/pr/src/io/prlayer.c: scope_hint: In function ‘pl_TopAccept’
nss-3.110/nspr/pr/src/io/prlayer.c:169:12: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  169 |   PRStatus rv;
#      |            ^~
#  167|   static PRFileDesc* PR_CALLBACK pl_TopAccept(PRFileDesc* fd, PRNetAddr* addr,
#  168|                                               PRIntervalTime timeout) {
#  169|->   PRStatus rv;
#  170|     PRFileDesc *newfd, *layer = fd;
#  171|     PRFileDesc* newstack;

Error: COMPILER_WARNING (CWE-563): [#def8]
nss-3.110/nspr/pr/src/io/prlayer.c: scope_hint: In function ‘pl_DefAcceptread’
nss-3.110/nspr/pr/src/io/prlayer.c:278:12: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  278 |   PRStatus rv;
#      |            ^~
#  276|                                               PRInt32 amount, PRIntervalTime t) {
#  277|     PRInt32 nbytes;
#  278|->   PRStatus rv;
#  279|     PRFileDesc* newstack;
#  280|     PRFileDesc* layer = sd;

Error: COMPILER_WARNING (CWE-563): [#def9]
nss-3.110/nspr/pr/src/md/unix/unix.c: scope_hint: In function ‘_PR_UnixInit’
nss-3.110/nspr/pr/src/md/unix/unix.c:2587:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
# 2587 |   int rv;
#      |       ^~
# 2585|   void _PR_UnixInit(void) {
# 2586|     struct sigaction sigact;
# 2587|->   int rv;
# 2588|   
# 2589|     sigemptyset(&timer_set);

Error: COMPILER_WARNING (CWE-252): [#def10]
nss-3.110/nspr/pr/src/md/unix/uxproces.c: scope_hint: In function ‘_MD_unix_terminate_waitpid_daemon’
nss-3.110/nspr/pr/src/md/unix/uxproces.c:119:5: warning[-Wunused-result]: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’
#  119 |     write(pr_wp.pipefd[1], "", 1);
#      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#  117|     if (pr_wp.thread) {
#  118|       pr_waitpid_daemon_exit = 1;
#  119|->     write(pr_wp.pipefd[1], "", 1);
#  120|       PR_JoinThread(pr_wp.thread);
#  121|     }

Error: COMPILER_WARNING (CWE-563): [#def11]
nss-3.110/nspr/pr/src/md/unix/uxproces.c: scope_hint: In function ‘pr_InstallSigchldHandler’
nss-3.110/nspr/pr/src/md/unix/uxproces.c:655:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  655 |   int rv;
#      |       ^~
#  653|   static void pr_InstallSigchldHandler() {
#  654|     struct sigaction act, oact;
#  655|->   int rv;
#  656|   
#  657|     act.sa_handler = pr_SigchldHandler;

Error: COMPILER_WARNING (CWE-563): [#def12]
nss-3.110/nspr/pr/src/md/unix/uxproces.c: scope_hint: In function ‘_MD_InitProcesses’
nss-3.110/nspr/pr/src/md/unix/uxproces.c:672:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  672 |   int rv;
#      |       ^~
#  670|   static PRStatus _MD_InitProcesses(void) {
#  671|   #if !defined(_PR_NATIVE_THREADS)
#  672|->   int rv;
#  673|     int flags;
#  674|   #endif

Error: CPPCHECK_WARNING (CWE-476): [#def13]
nss-3.110/nspr/pr/src/misc/prdtoa.c:573: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: rv
#  571|       }
#  572|   #endif
#  573|->     rv->k = k;
#  574|       rv->maxwds = x;
#  575|     }

Error: CPPCHECK_WARNING (CWE-476): [#def14]
nss-3.110/nspr/pr/src/misc/prdtoa.c:574: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: rv
#  572|   #endif
#  573|       rv->k = k;
#  574|->     rv->maxwds = x;
#  575|     }
#  576|     FREE_DTOA_LOCK(0);

Error: CPPCHECK_WARNING (CWE-476): [#def15]
nss-3.110/nspr/pr/src/misc/prdtoa.c:577: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: rv
#  575|     }
#  576|     FREE_DTOA_LOCK(0);
#  577|->   rv->sign = rv->wds = 0;
#  578|     return rv;
#  579|   }

Error: CPPCHECK_WARNING (CWE-476): [#def16]
nss-3.110/nspr/pr/src/misc/prtime.c:1765: warning[nullPointer]: Possible null pointer dereference: ap
# 1763|     }
# 1764|   
# 1765|->   rv = strftime(buf, buflen, fmt, ap);
# 1766|     if (!rv && buf && buflen > 0) {
# 1767|       /*

Error: COMPILER_WARNING (CWE-563): [#def17]
nss-3.110/nspr/pr/src/misc/prtpool.c: scope_hint: In function ‘io_wstart’
nss-3.110/nspr/pr/src/misc/prtpool.c:387:16: warning[-Wunused-but-set-variable]: variable ‘rval_status’ set but not used
#  387 |       PRStatus rval_status;
#      |                ^~~~~~~~~~~
#  385|          * at least one io event is set
#  386|          */
#  387|->       PRStatus rval_status;
#  388|         PRInt32 index;
#  389|   

Error: COMPILER_WARNING (CWE-563): [#def18]
nss-3.110/nspr/pr/src/misc/prtpool.c: scope_hint: In function ‘notify_ioq’
nss-3.110/nspr/pr/src/misc/prtpool.c:958:12: warning[-Wunused-but-set-variable]: variable ‘rval_status’ set but not used
#  958 |   PRStatus rval_status;
#      |            ^~~~~~~~~~~
#  956|   
#  957|   static void notify_ioq(PRThreadPool* tp) {
#  958|->   PRStatus rval_status;
#  959|   
#  960|     /*

Error: COMPILER_WARNING (CWE-563): [#def19]
nss-3.110/nspr/pr/src/misc/prtpool.c: scope_hint: In function ‘PR_JoinThreadPool’
nss-3.110/nspr/pr/src/misc/prtpool.c:1080:12: warning[-Wunused-but-set-variable]: variable ‘rval_status’ set but not used
# 1080 |   PRStatus rval_status;
#      |            ^~~~~~~~~~~
# 1078|     PRStatus rval = PR_SUCCESS;
# 1079|     PRCList* head;
# 1080|->   PRStatus rval_status;
# 1081|   
# 1082|     PR_Lock(tpool->jobq.lock);

Error: COMPILER_WARNING (CWE-563): [#def20]
nss-3.110/nspr/pr/src/prvrsion.c: scope_hint: In function ‘libVersionPoint’
nss-3.110/nspr/pr/src/prvrsion.c:87:15: warning[-Wunused-but-set-variable]: variable ‘dummy’ set but not used
#   87 |   const char* dummy;
#      |               ^~~~~
#   85|      * from being optimized away as unused variables.
#   86|      */
#   87|->   const char* dummy;
#   88|   
#   89|     dummy = rcsid;

Error: COMPILER_WARNING (CWE-563): [#def21]
nss-3.110/nspr/pr/src/pthreads/ptio.c: scope_hint: In function ‘pt_linux_sendfile_cont’
nss-3.110/nspr/pr/src/pthreads/ptio.c:1094:9: warning[-Wunused-but-set-variable]: variable ‘oldoffset’ set but not used
# 1094 |   off_t oldoffset;
#      |         ^~~~~~~~~
# 1092|   static PRBool pt_linux_sendfile_cont(pt_Continuation* op, PRInt16 revents) {
# 1093|     ssize_t rv;
# 1094|->   off_t oldoffset;
# 1095|   
# 1096|     oldoffset = op->offset;

Error: COMPILER_WARNING (CWE-563): [#def22]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘_PR_InitLocks’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:46:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#   46 |   int rv;
#      |       ^~
#   44|   
#   45|   void _PR_InitLocks(void) {
#   46|->   int rv;
#   47|     rv = _PT_PTHREAD_MUTEXATTR_INIT(&_pt_mattr);
#   48|     PR_ASSERT(0 == rv);

Error: COMPILER_WARNING (CWE-563): [#def23]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘pt_PostNotifies’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:62:17: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#   62 |   PRIntn index, rv;
#      |                 ^~
#   60|   
#   61|   static void pt_PostNotifies(PRLock* lock, PRBool unlock) {
#   62|->   PRIntn index, rv;
#   63|     _PT_Notified post;
#   64|     _PT_Notified *notified, *prev = NULL;

Error: COMPILER_WARNING (CWE-563): [#def24]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PR_NewLock’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:122:10: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  122 |   PRIntn rv;
#      |          ^~
#  120|   
#  121|   PR_IMPLEMENT(PRLock*) PR_NewLock(void) {
#  122|->   PRIntn rv;
#  123|     PRLock* lock;
#  124|   

Error: COMPILER_WARNING (CWE-563): [#def25]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PR_DestroyLock’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:141:10: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  141 |   PRIntn rv;
#      |          ^~
#  139|   
#  140|   PR_IMPLEMENT(void) PR_DestroyLock(PRLock* lock) {
#  141|->   PRIntn rv;
#  142|     PR_ASSERT(NULL != lock);
#  143|     PR_ASSERT(PR_FALSE == lock->locked);

Error: COMPILER_WARNING (CWE-563): [#def26]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PR_Lock’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:159:10: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  159 |   PRIntn rv;
#      |          ^~
#  157|      * |tid| field of the current thread's PRThread structure because
#  158|      * _pt_root calls PR_Lock before setting thred->id and thred->tid. */
#  159|->   PRIntn rv;
#  160|     PR_ASSERT(lock != NULL);
#  161|     rv = pthread_mutex_lock(&lock->mutex);

Error: COMPILER_WARNING (CWE-563): [#def27]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PR_Unlock’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:179:10: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  179 |   PRIntn rv;
#      |          ^~
#  177|   PR_IMPLEMENT(PRStatus) PR_Unlock(PRLock* lock) {
#  178|     pthread_t self = pthread_self();
#  179|->   PRIntn rv;
#  180|   
#  181|     PR_ASSERT(lock != NULL);

Error: COMPILER_WARNING (CWE-563): [#def28]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘pt_PostNotifiesFromMonitor’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:433:10: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  433 |   PRIntn rv;
#      |          ^~
#  431|   
#  432|   static void pt_PostNotifiesFromMonitor(pthread_cond_t* cv, PRIntn times) {
#  433|->   PRIntn rv;
#  434|   
#  435|     /*

Error: COMPILER_WARNING (CWE-563): [#def29]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PR_DestroyMonitor’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:511:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  511 |   int rv;
#      |       ^~
#  509|   
#  510|   PR_IMPLEMENT(void) PR_DestroyMonitor(PRMonitor* mon) {
#  511|->   int rv;
#  512|   
#  513|     PR_ASSERT(mon != NULL);

Error: COMPILER_WARNING (CWE-563): [#def30]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PR_GetMonitorEntryCount’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:533:10: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  533 |   PRIntn rv;
#      |          ^~
#  531|   PR_IMPLEMENT(PRIntn) PR_GetMonitorEntryCount(PRMonitor* mon) {
#  532|     pthread_t self = pthread_self();
#  533|->   PRIntn rv;
#  534|     PRIntn count = 0;
#  535|   

Error: COMPILER_WARNING (CWE-563): [#def31]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PR_EnterMonitor’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:560:10: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  560 |   PRIntn rv;
#      |          ^~
#  558|   PR_IMPLEMENT(void) PR_EnterMonitor(PRMonitor* mon) {
#  559|     pthread_t self = pthread_self();
#  560|->   PRIntn rv;
#  561|   
#  562|     PR_ASSERT(mon != NULL);

Error: COMPILER_WARNING (CWE-563): [#def32]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PR_ExitMonitor’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:587:10: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  587 |   PRIntn rv;
#      |          ^~
#  585|   PR_IMPLEMENT(PRStatus) PR_ExitMonitor(PRMonitor* mon) {
#  586|     pthread_t self = pthread_self();
#  587|->   PRIntn rv;
#  588|     PRBool notifyEntryWaiter = PR_FALSE;
#  589|     PRIntn notifyTimes = 0;

Error: COMPILER_WARNING (CWE-563): [#def33]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PRP_DestroyNakedCondVar’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:1112:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
# 1112 |   int rv;
#      |       ^~
# 1110|   
# 1111|   PR_IMPLEMENT(void) PRP_DestroyNakedCondVar(PRCondVar* cvar) {
# 1112|->   int rv;
# 1113|     rv = pthread_cond_destroy(&cvar->cv);
# 1114|     PR_ASSERT(0 == rv);

Error: COMPILER_WARNING (CWE-563): [#def34]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PRP_NakedNotify’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:1140:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
# 1140 |   int rv;
#      |       ^~
# 1138|   
# 1139|   PR_IMPLEMENT(PRStatus) PRP_NakedNotify(PRCondVar* cvar) {
# 1140|->   int rv;
# 1141|     PR_ASSERT(cvar != NULL);
# 1142|     rv = pthread_cond_signal(&cvar->cv);

Error: COMPILER_WARNING (CWE-563): [#def35]
nss-3.110/nspr/pr/src/pthreads/ptsynch.c: scope_hint: In function ‘PRP_NakedBroadcast’
nss-3.110/nspr/pr/src/pthreads/ptsynch.c:1148:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
# 1148 |   int rv;
#      |       ^~
# 1146|   
# 1147|   PR_IMPLEMENT(PRStatus) PRP_NakedBroadcast(PRCondVar* cvar) {
# 1148|->   int rv;
# 1149|     PR_ASSERT(cvar != NULL);
# 1150|     rv = pthread_cond_broadcast(&cvar->cv);

Error: COMPILER_WARNING (CWE-563): [#def36]
nss-3.110/nspr/pr/src/pthreads/ptthread.c: scope_hint: In function ‘pt_AttachThread’
nss-3.110/nspr/pr/src/pthreads/ptthread.c:260:9: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  260 |     int rv;
#      |         ^~
#  258|     thred = PR_NEWZAP(PRThread);
#  259|     if (NULL != thred) {
#  260|->     int rv;
#  261|   
#  262|       thred->priority = PR_PRIORITY_NORMAL;

Error: COMPILER_WARNING (CWE-563): [#def37]
nss-3.110/nspr/pr/src/pthreads/ptthread.c: scope_hint: In function ‘PR_DetachThread’
nss-3.110/nspr/pr/src/pthreads/ptthread.c:570:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  570 |   int rv;
#      |       ^~
#  568|   PR_IMPLEMENT(void) PR_DetachThread(void) {
#  569|     void* thred;
#  570|->   int rv;
#  571|   
#  572|     _PT_PTHREAD_GETSPECIFIC(pt_book.key, thred);

Error: COMPILER_WARNING (CWE-563): [#def38]
nss-3.110/nspr/pr/src/pthreads/ptthread.c: scope_hint: In function ‘PR_Interrupt’
nss-3.110/nspr/pr/src/pthreads/ptthread.c:705:12: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  705 |     PRIntn rv;
#      |            ^~
#  703|     cv = thred->waiting;
#  704|     if ((NULL != cv) && !thred->interrupt_blocked) {
#  705|->     PRIntn rv;
#  706|       (void)PR_ATOMIC_INCREMENT(&cv->notify_pending);
#  707|       rv = pthread_cond_broadcast(&cv->cv);

Error: COMPILER_WARNING (CWE-563): [#def39]
nss-3.110/nspr/pr/src/pthreads/ptthread.c: scope_hint: In function ‘_pt_thread_death’
nss-3.110/nspr/pr/src/pthreads/ptthread.c:771:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
#  771 |   int rv;
#      |       ^~
#  769|   static void _pt_thread_death(void* arg) {
#  770|     void* thred;
#  771|->   int rv;
#  772|   
#  773|     _PT_PTHREAD_GETSPECIFIC(pt_book.key, thred);

Error: COMPILER_WARNING (CWE-563): [#def40]
nss-3.110/nspr/pr/src/pthreads/ptthread.c: scope_hint: In function ‘_PR_Fini’
nss-3.110/nspr/pr/src/pthreads/ptthread.c:1001:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
# 1001 |   int rv;
#      |       ^~
#  999|   void _PR_Fini(void) {
# 1000|     void* thred;
# 1001|->   int rv;
# 1002|   
# 1003|     if (!_pr_initialized) {

Error: COMPILER_WARNING (CWE-563): [#def41]
nss-3.110/nspr/pr/src/pthreads/ptthread.c: scope_hint: In function ‘PR_Cleanup’
nss-3.110/nspr/pr/src/pthreads/ptthread.c:1033:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
# 1033 |   int rv;
#      |       ^~
# 1031|   PR_IMPLEMENT(PRStatus) PR_Cleanup(void) {
# 1032|     PRThread* me = PR_GetCurrentThread();
# 1033|->   int rv;
# 1034|     PR_LOG(_pr_thread_lm, PR_LOG_MIN, ("PR_Cleanup: shutting down NSPR"));
# 1035|     PR_ASSERT(me->state & PT_THREAD_PRIMORD);

Error: COMPILER_WARNING (CWE-563): [#def42]
nss-3.110/nspr/pr/src/pthreads/ptthread.c: scope_hint: In function ‘init_pthread_gc_support’
nss-3.110/nspr/pr/src/pthreads/ptthread.c:1144:10: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
# 1144 |   PRIntn rv;
#      |          ^~
# 1142|    */
# 1143|   static void init_pthread_gc_support(void) {
# 1144|->   PRIntn rv;
# 1145|   
# 1146|     {

Error: COMPILER_WARNING (CWE-563): [#def43]
nss-3.110/nspr/pr/src/pthreads/ptthread.c: scope_hint: In function ‘pt_SuspendSet’
nss-3.110/nspr/pr/src/pthreads/ptthread.c:1336:10: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
# 1336 |   PRIntn rv;
#      |          ^~
# 1334|   
# 1335|   static void pt_SuspendSet(PRThread* thred) {
# 1336|->   PRIntn rv;
# 1337|   
# 1338|     PR_LOG(_pr_gc_lm, PR_LOG_ALWAYS,

Error: COMPILER_WARNING (CWE-563): [#def44]
nss-3.110/nspr/pr/src/pthreads/ptthread.c: scope_hint: In function ‘PR_SuspendAll’
nss-3.110/nspr/pr/src/pthreads/ptthread.c:1437:7: warning[-Wunused-but-set-variable]: variable ‘rv’ set but not used
# 1437 |   int rv;
#      |       ^~
# 1435|     PRThread* thred = pt_book.first;
# 1436|     PRThread* me = PR_GetCurrentThread();
# 1437|->   int rv;
# 1438|   
# 1439|     rv = pthread_once(&pt_gc_support_control, init_pthread_gc_support);

Error: CPPCHECK_WARNING (CWE-457): [#def45]
nss-3.110/nspr/pr/src/threads/prcmon.c:228: error[uninitvar]: Uninitialized variable: *pp
#  226|     hash = HASH(address);
#  227|     pp = hash_buckets + hash;
#  228|->   while ((p = *pp) != 0) {
#  229|       if (p->address == address) {
#  230|         if (p->cacheEntryCount > 0) {

Error: CPPCHECK_WARNING (CWE-457): [#def46]
nss-3.110/nspr/pr/src/threads/prcmon.c:251: error[uninitvar]: Uninitialized variable: *pp
#  249|     hash = HASH(address);
#  250|     pp = hash_buckets + hash;
#  251|->   while ((p = *pp) != 0) {
#  252|       if (p->address == address) {
#  253|         goto gotit;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def47]
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prlayer.c:62:5: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prlayer.c:35:29: enter_function: entry to ‘pl_TopClose’
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prlayer.c:44:6: branch_false: following ‘false’ branch...
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prlayer.c:53:7: branch_false: ...to here
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prlayer.c:53:6: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prlayer.c:61:11: call_function: calling ‘PR_PopIOLayer’ from ‘pl_TopClose’
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prlayer.c:61:11: return_function: returning to ‘pl_TopClose’ from ‘PR_PopIOLayer’
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prlayer.c:62:5: danger: dereference of NULL ‘PR_PopIOLayer(*fd.higher, -2)’
#   60|        */
#   61|       top = PR_PopIOLayer(fd->higher, PR_TOP_IO_LAYER);
#   62|->     top->dtor(top);
#   63|       /*
#   64|        * then call lower layer

Error: GCC_ANALYZER_WARNING (CWE-476): [#def48]
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:403:11: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘cArg’
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:523:16: enter_function: entry to ‘DoScanf’
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:540:15: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:542:7: branch_true: ...to here
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:567:14: call_function: calling ‘Convert’ from ‘DoScanf’
#  401|           }
#  402|           if (state->assign) {
#  403|->           *cArg++ = ch;
#  404|           }
#  405|         }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def49]
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:465:11: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘cArg’
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:523:16: enter_function: entry to ‘DoScanf’
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:540:15: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:542:7: branch_true: ...to here
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:567:14: call_function: calling ‘Convert’ from ‘DoScanf’
#  463|           }
#  464|           if (state->assign) {
#  465|->           *cArg++ = ch;
#  466|           }
#  467|         }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def50]
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:469:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘cArg’
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:523:16: enter_function: entry to ‘DoScanf’
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:540:15: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:542:7: branch_true: ...to here
nss-3.110/nspr_build/pr/src/io/../../../../nspr/pr/src/io/prscanf.c:567:14: call_function: calling ‘Convert’ from ‘DoScanf’
#  467|         }
#  468|         if (state->assign) {
#  469|->         *cArg = '\0';
#  470|           state->converted = PR_TRUE;
#  471|         }

Error: GCC_ANALYZER_WARNING (CWE-775): [#def51]
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:259:12: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘dup2(*_29->secret.md.osfd, 0)’
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:139:6: branch_false: following ‘false’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:145:6: branch_false: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:145:6: branch_true: following ‘true’ branch (when ‘attr’ is non-NULL)...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:145:15: branch_true: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:236:6: branch_false: following ‘false’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:244:6: branch_false: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:244:6: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:253:8: branch_true: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:253:8: branch_true: following ‘true’ branch (when ‘attr’ is non-NULL)...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:257:11: branch_true: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:257:10: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:259:13: acquire_resource: opened here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:259:12: danger: ‘dup2(*_29->secret.md.osfd, 0)’ leaks here; was opened at [(13)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/12)
#  257|         if (attr->stdinFd && attr->stdinFd->secret->md.osfd != 0) {
#  258|           in_osfd = attr->stdinFd->secret->md.osfd;
#  259|->         if (dup2(in_osfd, 0) != 0) {
#  260|             _exit(1); /* failed */
#  261|           }

Error: GCC_ANALYZER_WARNING (CWE-775): [#def52]
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:269:12: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘dup2(*_37->secret.md.osfd, 1)’
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:139:6: branch_false: following ‘false’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:145:6: branch_false: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:145:6: branch_true: following ‘true’ branch (when ‘attr’ is non-NULL)...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:145:15: branch_true: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:236:6: branch_false: following ‘false’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:244:6: branch_false: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:244:6: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:253:8: branch_true: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:253:8: branch_true: following ‘true’ branch (when ‘attr’ is non-NULL)...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:257:11: branch_true: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:267:10: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:269:13: acquire_resource: opened here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:269:12: danger: ‘dup2(*_37->secret.md.osfd, 1)’ leaks here; was opened at [(13)](sarif:/runs/0/results/1/codeFlows/0/threadFlows/0/locations/12)
#  267|         if (attr->stdoutFd && attr->stdoutFd->secret->md.osfd != 1) {
#  268|           out_osfd = attr->stdoutFd->secret->md.osfd;
#  269|->         if (dup2(out_osfd, 1) != 1) {
#  270|             _exit(1); /* failed */
#  271|           }

Error: GCC_ANALYZER_WARNING (CWE-775): [#def53]
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:279:12: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘dup2(*_43->secret.md.osfd, 2)’
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:139:6: branch_false: following ‘false’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:145:6: branch_false: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:145:6: branch_true: following ‘true’ branch (when ‘attr’ is non-NULL)...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:145:15: branch_true: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:236:6: branch_false: following ‘false’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:244:6: branch_false: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:244:6: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:253:8: branch_true: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:253:8: branch_true: following ‘true’ branch (when ‘attr’ is non-NULL)...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:257:11: branch_true: ...to here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:277:10: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:279:13: acquire_resource: opened here
nss-3.110/nspr_build/pr/src/md/unix/../../../../../nspr/pr/src/md/unix/uxproces.c:279:12: danger: ‘dup2(*_43->secret.md.osfd, 2)’ leaks here; was opened at [(13)](sarif:/runs/0/results/2/codeFlows/0/threadFlows/0/locations/12)
#  277|         if (attr->stderrFd && attr->stderrFd->secret->md.osfd != 2) {
#  278|           err_osfd = attr->stderrFd->secret->md.osfd;
#  279|->         if (dup2(err_osfd, 2) != 2) {
#  280|             _exit(1); /* failed */
#  281|           }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def54]
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prdtoa.c:573:5: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘rv’
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prdtoa.c:3554:1: enter_function: entry to ‘PR_cnvtf’
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prdtoa.c:3564:6: branch_false: following ‘false’ branch...
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prdtoa.c:3569:7: branch_false: ...to here
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prdtoa.c:3569:7: call_function: calling ‘PR_dtoa’ from ‘PR_cnvtf’
#  571|       }
#  572|   #endif
#  573|->     rv->k = k;
#  574|       rv->maxwds = x;
#  575|     }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def55]
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prtpool.c:327:5: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘pollfds’
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prtpool.c:296:10: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prtpool.c:299:18: branch_true: ...to here
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prtpool.c:300:8: branch_false: following ‘false’ branch...
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prtpool.c:327:32: branch_false: ...to here
nss-3.110/nspr_build/pr/src/misc/../../../../nspr/pr/src/misc/prtpool.c:327:5: danger: dereference of NULL ‘pollfds’
#  325|        * add the notify fd; used for unblocking io thread(s)
#  326|        */
#  327|->     pollfds[pollfds_used].fd = tp->ioq.notify_fd;
#  328|       pollfds[pollfds_used].in_flags = PR_POLL_READ;
#  329|       pollfds[pollfds_used].out_flags = 0;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def56]
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:718:3: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:716:20: enter_function: entry to ‘PR_ClearInterrupt’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:717:18: call_function: calling ‘PR_GetCurrentThread’ from ‘PR_ClearInterrupt’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:717:18: return_function: returning to ‘PR_ClearInterrupt’ from ‘PR_GetCurrentThread’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:718:3: danger: dereference of NULL ‘PR_GetCurrentThread()’
#  716|   PR_IMPLEMENT(void) PR_ClearInterrupt(void) {
#  717|     PRThread* me = PR_GetCurrentThread();
#  718|->   me->state &= ~PT_THREAD_ABORTED;
#  719|   } /* PR_ClearInterrupt */
#  720|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def57]
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:723:3: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:721:20: enter_function: entry to ‘PR_BlockInterrupt’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:722:18: call_function: calling ‘PR_GetCurrentThread’ from ‘PR_BlockInterrupt’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:722:18: return_function: returning to ‘PR_BlockInterrupt’ from ‘PR_GetCurrentThread’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:723:3: danger: dereference of NULL ‘PR_GetCurrentThread()’
#  721|   PR_IMPLEMENT(void) PR_BlockInterrupt(void) {
#  722|     PRThread* me = PR_GetCurrentThread();
#  723|->   _PT_THREAD_BLOCK_INTERRUPT(me);
#  724|   } /* PR_BlockInterrupt */
#  725|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def58]
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:728:3: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:726:20: enter_function: entry to ‘PR_UnblockInterrupt’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:727:18: call_function: calling ‘PR_GetCurrentThread’ from ‘PR_UnblockInterrupt’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:727:18: return_function: returning to ‘PR_UnblockInterrupt’ from ‘PR_GetCurrentThread’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:728:3: danger: dereference of NULL ‘PR_GetCurrentThread()’
#  726|   PR_IMPLEMENT(void) PR_UnblockInterrupt(void) {
#  727|     PRThread* me = PR_GetCurrentThread();
#  728|->   _PT_THREAD_UNBLOCK_INTERRUPT(me);
#  729|   } /* PR_UnblockInterrupt */
#  730|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def59]
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1036:7: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1031:24: enter_function: entry to ‘PR_Cleanup’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1032:18: call_function: calling ‘PR_GetCurrentThread’ from ‘PR_Cleanup’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1032:18: return_function: returning to ‘PR_Cleanup’ from ‘PR_GetCurrentThread’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1036:7: danger: dereference of NULL ‘PR_GetCurrentThread()’
# 1034|     PR_LOG(_pr_thread_lm, PR_LOG_MIN, ("PR_Cleanup: shutting down NSPR"));
# 1035|     PR_ASSERT(me->state & PT_THREAD_PRIMORD);
# 1036|->   if (me->state & PT_THREAD_PRIMORD) {
# 1037|       PR_Lock(pt_book.ml);
# 1038|       while (pt_book.user > pt_book.this_many) {

Error: GCC_ANALYZER_WARNING (CWE-476): [#def60]
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1177:3: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1175:20: enter_function: entry to ‘PR_SetThreadGCAble’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1177:3: call_function: calling ‘PR_GetCurrentThread’ from ‘PR_SetThreadGCAble’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1177:3: return_function: returning to ‘PR_SetThreadGCAble’ from ‘PR_GetCurrentThread’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1177:3: danger: dereference of NULL ‘PR_GetCurrentThread()’
# 1175|   PR_IMPLEMENT(void) PR_SetThreadGCAble(void) {
# 1176|     PR_Lock(pt_book.ml);
# 1177|->   PR_GetCurrentThread()->state |= PT_THREAD_GCABLE;
# 1178|     PR_Unlock(pt_book.ml);
# 1179|   }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def61]
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1183:3: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1181:20: enter_function: entry to ‘PR_ClearThreadGCAble’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1183:3: call_function: calling ‘PR_GetCurrentThread’ from ‘PR_ClearThreadGCAble’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1183:3: return_function: returning to ‘PR_ClearThreadGCAble’ from ‘PR_GetCurrentThread’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1183:3: danger: dereference of NULL ‘PR_GetCurrentThread()’
# 1181|   PR_IMPLEMENT(void) PR_ClearThreadGCAble(void) {
# 1182|     PR_Lock(pt_book.ml);
# 1183|->   PR_GetCurrentThread()->state &= (~PT_THREAD_GCABLE);
# 1184|     PR_Unlock(pt_book.ml);
# 1185|   }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def62]
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1285:3: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘me’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1278:13: enter_function: entry to ‘suspend_signal_handler’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1279:18: call_function: calling ‘PR_GetCurrentThread’ from ‘suspend_signal_handler’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1279:18: return_function: returning to ‘suspend_signal_handler’ from ‘PR_GetCurrentThread’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1279:13: release_memory: ‘me’ is NULL
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1285:3: branch_true: following ‘true’ branch...
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1285:3: branch_true: ...to here
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1285:3: danger: dereference of NULL ‘PR_GetCurrentThread()’
# 1283|     PR_ASSERT((me->suspend & PT_THREAD_SUSPENDED) == 0);
# 1284|   
# 1285|->   PR_LOG(
# 1286|         _pr_gc_lm, PR_LOG_ALWAYS,
# 1287|         ("Begin suspend_signal_handler thred %p thread id = %X\n", me, me->id));

Error: GCC_ANALYZER_WARNING (CWE-476): [#def63]
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1292:3: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1278:13: enter_function: entry to ‘suspend_signal_handler’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1279:18: call_function: calling ‘PR_GetCurrentThread’ from ‘suspend_signal_handler’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1279:18: return_function: returning to ‘suspend_signal_handler’ from ‘PR_GetCurrentThread’
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1279:13: release_memory: ‘me’ is NULL
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1285:3: branch_false: following ‘false’ branch...
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1292:5: branch_false: ...to here
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1292:5: release_memory: ‘me’ is NULL
nss-3.110/nspr_build/pr/src/pthreads/../../../../nspr/pr/src/pthreads/ptthread.c:1292:3: danger: dereference of NULL ‘me’
# 1290|      * save stack pointer
# 1291|      */
# 1292|->   me->sp = &me;
# 1293|   
# 1294|     /*

Error: CPPCHECK_WARNING (CWE-475): [#def64]
nss-3.110/nss/cmd/bltest/blapitest.c:2750: error[shiftNegative]: Shifting by a negative value is undefined behaviour
# 2748|       if (exp->len <= 4) {
# 2749|           for (i = exp->len; i >= 0; --i)
# 2750|->             e |= exp->data[exp->len - i] << 8 * (i - 1);
# 2751|           fprintf(stdout, "%12d", e);
# 2752|       } else {

Error: GCC_ANALYZER_WARNING (CWE-401): [#def65]
nss-3.110/nss/cmd/btoa/btoa.c:151:30: warning[-Wanalyzer-malloc-leak]: leak of ‘suffix’
nss-3.110/nss/cmd/btoa/btoa.c:124:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/btoa/btoa.c:125:17: branch_true: ...to here
nss-3.110/nss/cmd/btoa/btoa.c:150:20: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/btoa/btoa.c:151:30: branch_true: ...to here
nss-3.110/nss/cmd/btoa/btoa.c:151:30: acquire_memory: allocated here
nss-3.110/nss/cmd/btoa/btoa.c:124:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/btoa/btoa.c:125:17: branch_true: ...to here
nss-3.110/nss/cmd/btoa/btoa.c:150:20: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/btoa/btoa.c:151:30: branch_true: ...to here
nss-3.110/nss/cmd/btoa/btoa.c:151:30: danger: ‘suffix’ leaks here; was allocated at [(7)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/6)
#  149|               case 'w':
#  150|                   if (!strcmp(optstate->value, "c"))
#  151|->                     suffix = strdup("CERTIFICATE");
#  152|                   else
#  153|                       suffix = strdup(optstate->value);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def66]
nss-3.110/nss/cmd/crlutil/crlgen.c:817:21: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/cmd/crlutil/crlgen.c:790:1: enter_function: entry to ‘CRLGEN_ExtHandleInit’
nss-3.110/nss/cmd/crlutil/crlgen.c:797:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/crlutil/crlgen.c:809:8: branch_true: following ‘true’ branch...
 branch_true: ...to here
nss-3.110/nss/cmd/crlutil/crlgen.c:811:16: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/crlutil/crlgen.c:812:42: branch_true: ...to here
nss-3.110/nss/cmd/crlutil/crlgen.c:814:17: call_function: calling ‘crlgen_PlaceAnEntry’ from ‘CRLGEN_ExtHandleInit’
nss-3.110/nss/cmd/crlutil/crlgen.c:814:17: return_function: returning to ‘CRLGEN_ExtHandleInit’ from ‘crlgen_PlaceAnEntry’
nss-3.110/nss/cmd/crlutil/crlgen.c:815:16: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/crlutil/crlgen.c:817:21: branch_true: ...to here
nss-3.110/nss/cmd/crlutil/crlgen.c:817:21: danger: dereference of NULL ‘crlgen_PlaceAnEntry(crlGenData, *entry, &**entry_21.serialNumber)’
#  815|               if ((*entry)->extensions) {
#  816|                   extData->extHandle =
#  817|->                     CERT_StartCRLEntryExtensions(&crlGenData->signCrl->crl,
#  818|                                                    (CERTCrlEntry *)extData->entry);
#  819|                   if (crlgen_InitExtensionHandle(extData->extHandle,

Error: GCC_ANALYZER_WARNING (CWE-401): [#def67]
nss-3.110/nss/cmd/crlutil/crlgen_lex_orig.l:649:5: warning[-Wanalyzer-malloc-leak]: leak of ‘malloc(56)’
nss-3.110/nss/cmd/crlutil/crlgen_lex_orig.l:162:1: enter_function: entry to ‘CRLGEN_StartCrlGen’
nss-3.110/nss/cmd/crlutil/crlgen_lex_orig.l:172:10: call_function: calling ‘yylex’ from ‘CRLGEN_StartCrlGen’

Error: CPPCHECK_WARNING (CWE-457): [#def68]
nss-3.110/nss/cmd/dbtool/dbtool.c:651: warning[uninitvar]: Uninitialized variable: template.pValue
#  649|               template.pValue = alloc;
#  650|           }
#  651|->         if (template.pValue == NULL) {
#  652|               PR_fprintf(PR_STDERR, "    "
#  653|                                     "Could allocate %d bytes for  Attribute %s (0x%08x)\n",

Error: GCC_ANALYZER_WARNING (CWE-401): [#def69]
nss-3.110/nss/cmd/dbtool/sdb.c:2257:21: warning[-Wanalyzer-malloc-leak]: leak of ‘<unknown>’
nss-3.110/nss/cmd/dbtool/sdb.c:1982:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/dbtool/sdb.c:1986:14: branch_false: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:1987:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/dbtool/sdb.c:1998:8: branch_false: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2190:8: branch_false: following ‘false’ branch (when ‘enableCache == 0’)...
nss-3.110/nss/cmd/dbtool/sdb.c:2210:18: branch_false: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2211:8: branch_false: following ‘false’ branch (when ‘sdb’ is non-NULL)...
nss-3.110/nss/cmd/dbtool/sdb.c:2215:27: branch_false: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2216:8: branch_false: following ‘false’ branch (when ‘sdb_p’ is non-NULL)...
nss-3.110/nss/cmd/dbtool/sdb.c:2224:5: branch_false: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2233:12: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/dbtool/sdb.c:2237:18: branch_false: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2240:12: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/dbtool/sdb.c:2244:30: branch_false: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2244:30: acquire_memory: allocated here
nss-3.110/nss/cmd/dbtool/sdb.c:2245:12: branch_false: following ‘false’ branch...
 branch_false: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2254:16: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/dbtool/sdb.c:2255:20: branch_true: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2255:20: branch_false: following ‘false’ branch (when ‘backedAttrs != schemaAttrsCapacity’)...
nss-3.110/nss/cmd/dbtool/sdb.c:2265:37: branch_false: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2271:18: branch_true: following ‘true’ branch...
 branch_true: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2254:16: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/dbtool/sdb.c:2255:20: branch_true: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2255:20: branch_true: following ‘true’ branch (when ‘backedAttrs == schemaAttrsCapacity’)...
nss-3.110/nss/cmd/dbtool/sdb.c:2256:21: branch_true: ...to here
nss-3.110/nss/cmd/dbtool/sdb.c:2257:21: danger: ‘<unknown>’ leaks here; was allocated at [(15)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/14)
# 2255|                   if (backedAttrs == schemaAttrsCapacity) {
# 2256|                       schemaAttrsCapacity += known_attributes_size;
# 2257|->                     sdb_p->schemaAttrs = realloc(sdb_p->schemaAttrs,
# 2258|                                                    schemaAttrsCapacity * sizeof(CK_ATTRIBUTE_TYPE));
# 2259|                       if (!sdb_p->schemaAttrs) {

Error: GCC_ANALYZER_WARNING (CWE-401): [#def70]
nss-3.110/nss/cmd/digest/digest.c:173:28: warning[-Wanalyzer-malloc-leak]: leak of ‘hashName’
nss-3.110/nss/cmd/digest/digest.c:138:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/digest/digest.c:147:16: branch_false: ...to here
nss-3.110/nss/cmd/digest/digest.c:148:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/digest/digest.c:149:17: branch_true: ...to here
nss-3.110/nss/cmd/digest/digest.c:173:28: acquire_memory: allocated here
nss-3.110/nss/cmd/digest/digest.c:148:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/digest/digest.c:149:17: branch_true: ...to here
nss-3.110/nss/cmd/digest/digest.c:173:28: danger: ‘hashName’ leaks here; was allocated at [(5)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/4)
#  171|   
#  172|               case 't':
#  173|->                 hashName = strdup(optstate->value);
#  174|                   break;
#  175|           }

Error: GCC_ANALYZER_WARNING (CWE-457): [#def71]
nss-3.110/nss/cmd/fipstest/fipstest.c:102:24: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘*<unknown>’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8789:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8789:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8791:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8791:16: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8794:24: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8794:23: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8796:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8796:17: call_function: calling ‘aes_cbc_mct’ from ‘main’
#  100|       unsigned int i;
#  101|       for (i = 0; i < len; i++) {
#  102|->         byteval_to_hex(buf[i], &str[2 * i], 'a');
#  103|       }
#  104|       str[2 * len] = '\0';

Error: CPPCHECK_WARNING (CWE-476): [#def72]
nss-3.110/nss/cmd/fipstest/fipstest.c:320: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: req
#  318|       req = fopen(reqfn, "r");
#  319|       resp = stdout;
#  320|->     while (fgets(buf, sizeof buf, req) != NULL) {
#  321|           /* a comment or blank line */
#  322|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def73]
nss-3.110/nss/cmd/fipstest/fipstest.c:320:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8754:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8754:12: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8756:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8756:13: call_function: calling ‘tdea_kat_mmt’ from ‘main’
#  318|       req = fopen(reqfn, "r");
#  319|       resp = stdout;
#  320|->     while (fgets(buf, sizeof buf, req) != NULL) {
#  321|           /* a comment or blank line */
#  322|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def74]
nss-3.110/nss/cmd/fipstest/fipstest.c:763: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: req
#  761|       req = fopen(reqfn, "r");
#  762|       resp = stdout;
#  763|->     while (fgets(buf, sizeof buf, req) != NULL) {
#  764|           /* a comment or blank line */
#  765|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def75]
nss-3.110/nss/cmd/fipstest/fipstest.c:763:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8754:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8754:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8757:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8757:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8760:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8760:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8762:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8762:16: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8764:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8764:17: call_function: calling ‘tdea_mct’ from ‘main’
#  761|       req = fopen(reqfn, "r");
#  762|       resp = stdout;
#  763|->     while (fgets(buf, sizeof buf, req) != NULL) {
#  764|           /* a comment or blank line */
#  765|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def76]
nss-3.110/nss/cmd/fipstest/fipstest.c:1035: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: aesreq
# 1033|       aesreq = fopen(reqfn, "r");
# 1034|       aesresp = stdout;
# 1035|->     while (fgets(buf, sizeof buf, aesreq) != NULL) {
# 1036|           /* a comment or blank line */
# 1037|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def77]
nss-3.110/nss/cmd/fipstest/fipstest.c:1035:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8782:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8782:16: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8783:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8783:17: call_function: calling ‘aes_gcm’ from ‘main’
# 1033|       aesreq = fopen(reqfn, "r");
# 1034|       aesresp = stdout;
# 1035|->     while (fgets(buf, sizeof buf, aesreq) != NULL) {
# 1036|           /* a comment or blank line */
# 1037|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-457): [#def78]
nss-3.110/nss/cmd/fipstest/fipstest.c:1144:26: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘ivlen’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8782:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8782:16: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8784:24: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8784:23: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8786:24: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8786:23: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8787:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8787:17: call_function: calling ‘aes_gcm’ from ‘main’
# 1142|               if (encrypt) {
# 1143|                   if (encrypt == 2) {
# 1144|->                     rv = RNG_GenerateGlobalRandomBytes(iv, ivlen);
# 1145|                       if (rv != SECSuccess) {
# 1146|                           goto loser;

Error: GCC_ANALYZER_WARNING (CWE-457): [#def79]
nss-3.110/nss/cmd/fipstest/fipstest.c:1150:17: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘ivlen’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8782:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8782:16: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8784:24: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8784:23: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8785:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8785:17: call_function: calling ‘aes_gcm’ from ‘main’
# 1148|                   }
# 1149|                   params.pIv = iv;
# 1150|->                 params.ulIvLen = ivlen;
# 1151|                   params.pAAD = aad;
# 1152|                   params.ulAADLen = aadlen;

Error: GCC_ANALYZER_WARNING (CWE-457): [#def80]
nss-3.110/nss/cmd/fipstest/fipstest.c:1190:53: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘ciphertextlen’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8782:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8782:16: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8783:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8783:17: call_function: calling ‘aes_gcm’ from ‘main’
# 1188|               }
# 1189|               for (j = 0; isxdigit((unsigned char)buf[i]); i += 2, j++) {
# 1190|->                 hex_to_byteval(&buf[i], &ciphertext[j + ciphertextlen]);
# 1191|               }
# 1192|               ciphertextlen += j;

Error: GCC_ANALYZER_WARNING (CWE-457): [#def81]
nss-3.110/nss/cmd/fipstest/fipstest.c:1192:27: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘ciphertextlen’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8782:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8782:16: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8783:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8783:17: call_function: calling ‘aes_gcm’ from ‘main’
# 1190|                   hex_to_byteval(&buf[i], &ciphertext[j + ciphertextlen]);
# 1191|               }
# 1192|->             ciphertextlen += j;
# 1193|               params.pIv = iv;
# 1194|               params.ulIvLen = ivlen;

Error: CPPCHECK_WARNING (CWE-476): [#def82]
nss-3.110/nss/cmd/fipstest/fipstest.c:1252: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: aesreq
# 1250|       aesreq = fopen(reqfn, "r");
# 1251|       aesresp = stdout;
# 1252|->     while (fgets(buf, sizeof buf, aesreq) != NULL) {
# 1253|           /* a comment or blank line */
# 1254|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def83]
nss-3.110/nss/cmd/fipstest/fipstest.c:1252:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:12: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8777:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8777:13: call_function: calling ‘aes_kat_mmt’ from ‘main’
# 1250|       aesreq = fopen(reqfn, "r");
# 1251|       aesresp = stdout;
# 1252|->     while (fgets(buf, sizeof buf, aesreq) != NULL) {
# 1253|           /* a comment or blank line */
# 1254|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def84]
nss-3.110/nss/cmd/fipstest/fipstest.c:1460: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: aesreq
# 1458|       aesreq = fopen(reqfn, "r");
# 1459|       aesresp = stdout;
# 1460|->     while (fgets(buf, sizeof buf, aesreq) != NULL) {
# 1461|           /* a comment or blank line */
# 1462|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def85]
nss-3.110/nss/cmd/fipstest/fipstest.c:1460:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8789:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8789:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8791:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8791:16: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8793:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8793:17: call_function: calling ‘aes_ecb_mct’ from ‘main’
# 1458|       aesreq = fopen(reqfn, "r");
# 1459|       aesresp = stdout;
# 1460|->     while (fgets(buf, sizeof buf, aesreq) != NULL) {
# 1461|           /* a comment or blank line */
# 1462|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-457): [#def86]
nss-3.110/nss/cmd/fipstest/fipstest.c:1641:21: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘*(__int128 unsigned *)(&plaintext[0])’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8789:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8789:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8791:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8791:16: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8793:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8793:17: call_function: calling ‘aes_ecb_mct’ from ‘main’
# 1639|                   for (j = 0; j < 1000; j++) {
# 1640|                       /* Save PT[j-1] */
# 1641|->                     memcpy(plaintext_1, plaintext, sizeof plaintext);
# 1642|   
# 1643|                       /* PT[j] = AES(Key[i], CT[j]) */

Error: CPPCHECK_WARNING (CWE-476): [#def87]
nss-3.110/nss/cmd/fipstest/fipstest.c:1744: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: aesreq
# 1742|       aesreq = fopen(reqfn, "r");
# 1743|       aesresp = stdout;
# 1744|->     while (fgets(buf, sizeof buf, aesreq) != NULL) {
# 1745|           /* a comment or blank line */
# 1746|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def88]
nss-3.110/nss/cmd/fipstest/fipstest.c:1744:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8775:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8778:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8781:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8789:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8789:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8791:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8791:16: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8794:24: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8794:23: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8796:17: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8796:17: call_function: calling ‘aes_cbc_mct’ from ‘main’
# 1742|       aesreq = fopen(reqfn, "r");
# 1743|       aesresp = stdout;
# 1744|->     while (fgets(buf, sizeof buf, aesreq) != NULL) {
# 1745|           /* a comment or blank line */
# 1746|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def89]
nss-3.110/nss/cmd/fipstest/fipstest.c:2396: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: ecdsareq
# 2394|       ecdsaresp = stdout;
# 2395|       strcpy(curve, "nist");
# 2396|->     while (fgets(buf, sizeof buf, ecdsareq) != NULL) {
# 2397|           /* a comment or blank line */
# 2398|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def90]
nss-3.110/nss/cmd/fipstest/fipstest.c:2516: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: ecdsareq
# 2514|       strcpy(curve, "nist");
# 2515|       pubkey.data = NULL;
# 2516|->     while (fgets(buf, sizeof buf, ecdsareq) != NULL) {
# 2517|           /* a comment or blank line */
# 2518|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def91]
nss-3.110/nss/cmd/fipstest/fipstest.c:2641: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: ecdsareq
# 2639|       ecdsaresp = stdout;
# 2640|       strcpy(curve, "nist");
# 2641|->     while (fgets(buf, sizeof buf, ecdsareq) != NULL) {
# 2642|           /* a comment or blank line */
# 2643|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def92]
nss-3.110/nss/cmd/fipstest/fipstest.c:2801: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: ecdsareq
# 2799|       ecpub.ecParams.arena = NULL;
# 2800|       strcpy(curve, "nist");
# 2801|->     while (fgets(buf, sizeof buf, ecdsareq) != NULL) {
# 2802|           /* a comment or blank line */
# 2803|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def93]
nss-3.110/nss/cmd/fipstest/fipstest.c:3007: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: ecdhreq
# 3005|       strcpy(curve, "nist");
# 3006|       pubkey.data = NULL;
# 3007|->     while (fgets(buf, sizeof buf, ecdhreq) != NULL) {
# 3008|           /* a comment or blank line */
# 3009|           if (buf[0] == '#' || buf[0] == '\n' || buf[0] == '\r') {

Error: CPPCHECK_WARNING (CWE-476): [#def94]
nss-3.110/nss/cmd/fipstest/fipstest.c:3260: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: ecdhreq
# 3258|       strcpy(curve, "nist");
# 3259|       pubkey.data = NULL;
# 3260|->     while (fgets(buf, sizeof buf, ecdhreq) != NULL) {
# 3261|           /* a comment or blank line */
# 3262|           if (buf[0] == '#' || buf[0] == '\n' || buf[0] == '\r') {

Error: CPPCHECK_WARNING (CWE-476): [#def95]
nss-3.110/nss/cmd/fipstest/fipstest.c:3526: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: dhreq
# 3524|       dhreq = fopen(reqfn, "r");
# 3525|       dhresp = stdout;
# 3526|->     while (fgets(buf, sizeof buf, dhreq) != NULL) {
# 3527|           /* a comment or blank line */
# 3528|           if (buf[0] == '#' || buf[0] == '\n' || buf[0] == '\r') {

Error: CPPCHECK_WARNING (CWE-476): [#def96]
nss-3.110/nss/cmd/fipstest/fipstest.c:3720: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: dhreq
# 3718|       dhreq = fopen(reqfn, "r");
# 3719|       dhresp = stdout;
# 3720|->     while (fgets(buf, sizeof buf, dhreq) != NULL) {
# 3721|           /* a comment or blank line */
# 3722|           if (buf[0] == '#' || buf[0] == '\n' || buf[0] == '\r') {

Error: CPPCHECK_WARNING (CWE-476): [#def97]
nss-3.110/nss/cmd/fipstest/fipstest.c:3963: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: rngreq
# 3961|       rngreq = fopen(reqfn, "r");
# 3962|       rngresp = stdout;
# 3963|->     while (fgets(buf, sizeof buf, rngreq) != NULL) {
# 3964|           switch (command) {
# 3965|               case INSTANTIATE:

Error: CPPCHECK_WARNING (CWE-476): [#def98]
nss-3.110/nss/cmd/fipstest/fipstest.c:4385: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: rngreq
# 4383|       rngreq = fopen(reqfn, "r");
# 4384|       rngresp = stdout;
# 4385|->     while (fgets(buf, sizeof buf, rngreq) != NULL) {
# 4386|           /* a comment or blank line */
# 4387|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def99]
nss-3.110/nss/cmd/fipstest/fipstest.c:4508: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: rngreq
# 4506|       rngreq = fopen(reqfn, "r");
# 4507|       rngresp = stdout;
# 4508|->     while (fgets(buf, sizeof buf, rngreq) != NULL) {
# 4509|           /* a comment or blank line */
# 4510|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def100]
nss-3.110/nss/cmd/fipstest/fipstest.c:4710: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: req
# 4708|       req = fopen(reqfn, "r");
# 4709|       resp = stdout;
# 4710|->     while (fgets(buf, bufSize, req) != NULL) {
# 4711|   
# 4712|           /* a comment or blank line */

Error: GCC_ANALYZER_WARNING (CWE-688): [#def101]
nss-3.110/nss/cmd/fipstest/fipstest.c:4710:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8803:9: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8803:9: call_function: calling ‘sha_test’ from ‘main’
# 4708|       req = fopen(reqfn, "r");
# 4709|       resp = stdout;
# 4710|->     while (fgets(buf, bufSize, req) != NULL) {
# 4711|   
# 4712|           /* a comment or blank line */

Error: CPPCHECK_WARNING (CWE-476): [#def102]
nss-3.110/nss/cmd/fipstest/fipstest.c:4895: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: req
# 4893|       req = fopen(reqfn, "r");
# 4894|       resp = stdout;
# 4895|->     while (fgets(buf, bufSize, req) != NULL) {
# 4896|           if (strncmp(buf, "Mac", 3) == 0) {
# 4897|               i = 3;

Error: GCC_ANALYZER_WARNING (CWE-688): [#def103]
nss-3.110/nss/cmd/fipstest/fipstest.c:4895:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8824:9: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8824:9: call_function: calling ‘hmac_test’ from ‘main’
# 4893|       req = fopen(reqfn, "r");
# 4894|       resp = stdout;
# 4895|->     while (fgets(buf, bufSize, req) != NULL) {
# 4896|           if (strncmp(buf, "Mac", 3) == 0) {
# 4897|               i = 3;

Error: CPPCHECK_WARNING (CWE-476): [#def104]
nss-3.110/nss/cmd/fipstest/fipstest.c:5045: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: dsareq
# 5043|       dsareq = fopen(reqfn, "r");
# 5044|       dsaresp = stdout;
# 5045|->     while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5046|           /* a comment or blank line */
# 5047|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def105]
nss-3.110/nss/cmd/fipstest/fipstest.c:5045:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:12: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8833:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8833:13: call_function: calling ‘dsa_keypair_test’ from ‘main’
# 5043|       dsareq = fopen(reqfn, "r");
# 5044|       dsaresp = stdout;
# 5045|->     while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5046|           /* a comment or blank line */
# 5047|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def106]
nss-3.110/nss/cmd/fipstest/fipstest.c:5182: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: dsareq
# 5180|       memset(&vfy, 0, sizeof(vfy));
# 5181|   
# 5182|->     while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5183|           /* a comment or blank line */
# 5184|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def107]
nss-3.110/nss/cmd/fipstest/fipstest.c:5182:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8837:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8837:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8839:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8839:13: call_function: calling ‘dsa_pqgver_test’ from ‘main’
# 5180|       memset(&vfy, 0, sizeof(vfy));
# 5181|   
# 5182|->     while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5183|           /* a comment or blank line */
# 5184|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-775): [#def108]
nss-3.110/nss/cmd/fipstest/fipstest.c:5184:13: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(reqfn, "r")’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8837:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8837:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8839:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8839:13: call_function: calling ‘dsa_pqgver_test’ from ‘main’
# 5182|       while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5183|           /* a comment or blank line */
# 5184|->         if (buf[0] == '#' || buf[0] == '\n') {
# 5185|               fputs(buf, dsaresp);
# 5186|               continue;

Error: GCC_ANALYZER_WARNING (CWE-401): [#def109]
nss-3.110/nss/cmd/fipstest/fipstest.c:5184:13: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(reqfn, "r")’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8837:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8837:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8839:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8839:13: call_function: calling ‘dsa_pqgver_test’ from ‘main’
# 5182|       while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5183|           /* a comment or blank line */
# 5184|->         if (buf[0] == '#' || buf[0] == '\n') {
# 5185|               fputs(buf, dsaresp);
# 5186|               continue;

Error: CPPCHECK_WARNING (CWE-476): [#def110]
nss-3.110/nss/cmd/fipstest/fipstest.c:5510: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: dsareq
# 5508|       dsareq = fopen(reqfn, "r");
# 5509|       dsaresp = stdout;
# 5510|->     while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5511|           /* a comment or blank line */
# 5512|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def111]
nss-3.110/nss/cmd/fipstest/fipstest.c:5510:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8836:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8836:13: call_function: calling ‘dsa_pqggen_test’ from ‘main’
# 5508|       dsareq = fopen(reqfn, "r");
# 5509|       dsaresp = stdout;
# 5510|->     while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5511|           /* a comment or blank line */
# 5512|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-775): [#def112]
nss-3.110/nss/cmd/fipstest/fipstest.c:5512:13: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(reqfn, "r")’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8836:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8836:13: call_function: calling ‘dsa_pqggen_test’ from ‘main’
# 5510|       while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5511|           /* a comment or blank line */
# 5512|->         if (buf[0] == '#' || buf[0] == '\n') {
# 5513|               fputs(buf, dsaresp);
# 5514|               continue;

Error: GCC_ANALYZER_WARNING (CWE-401): [#def113]
nss-3.110/nss/cmd/fipstest/fipstest.c:5512:13: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(reqfn, "r")’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8836:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8836:13: call_function: calling ‘dsa_pqggen_test’ from ‘main’
# 5510|       while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5511|           /* a comment or blank line */
# 5512|->         if (buf[0] == '#' || buf[0] == '\n') {
# 5513|               fputs(buf, dsaresp);
# 5514|               continue;

Error: GCC_ANALYZER_WARNING (CWE-457): [#def114]
nss-3.110/nss/cmd/fipstest/fipstest.c:5586:26: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘N’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8823:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8828:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8831:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8834:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8836:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8836:13: call_function: calling ‘dsa_pqggen_test’ from ‘main’
# 5584|                                                &pqg, &vfy);
# 5585|                   } else {
# 5586|->                     rv = PQG_ParamGenV2(L, N, N, &pqg, &vfy);
# 5587|                   }
# 5588|                   if (rv != SECSuccess) {

Error: CPPCHECK_WARNING (CWE-476): [#def115]
nss-3.110/nss/cmd/fipstest/fipstest.c:5686: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: dsareq
# 5684|       dsaresp = stdout;
# 5685|   
# 5686|->     while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5687|           /* a comment or blank line */
# 5688|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def116]
nss-3.110/nss/cmd/fipstest/fipstest.c:5870: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: dsareq
# 5868|       memset(&pubkey, 0, sizeof(pubkey));
# 5869|   
# 5870|->     while (fgets(buf, sizeof buf, dsareq) != NULL) {
# 5871|           /* a comment or blank line */
# 5872|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def117]
nss-3.110/nss/cmd/fipstest/fipstest.c:6120: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: rsareq
# 6118|       rsareq = fopen(reqfn, "r");
# 6119|       rsaresp = stdout;
# 6120|->     while (fgets(buf, sizeof buf, rsareq) != NULL) {
# 6121|           /* a comment or blank line */
# 6122|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def118]
nss-3.110/nss/cmd/fipstest/fipstest.c:6120:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8810:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8810:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8813:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8813:19: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8816:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8816:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8818:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8818:13: call_function: calling ‘rsa_keypair_test’ from ‘main’
# 6118|       rsareq = fopen(reqfn, "r");
# 6119|       rsaresp = stdout;
# 6120|->     while (fgets(buf, sizeof buf, rsareq) != NULL) {
# 6121|           /* a comment or blank line */
# 6122|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def119]
nss-3.110/nss/cmd/fipstest/fipstest.c:6233: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: rsareq
# 6231|       pe.type = siBuffer;
# 6232|   
# 6233|->     while (fgets(buf, sizeof buf, rsareq) != NULL) {
# 6234|           /* a comment or blank line */
# 6235|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def120]
nss-3.110/nss/cmd/fipstest/fipstest.c:6233:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8810:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8810:12: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8812:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8812:13: call_function: calling ‘rsa_siggen_test’ from ‘main’
# 6231|       pe.type = siBuffer;
# 6232|   
# 6233|->     while (fgets(buf, sizeof buf, rsareq) != NULL) {
# 6234|           /* a comment or blank line */
# 6235|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-476): [#def121]
nss-3.110/nss/cmd/fipstest/fipstest.c:6315:13: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘rsaBlapiPrivKey’
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8810:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8810:12: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8812:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8812:13: call_function: calling ‘rsa_siggen_test’ from ‘main’
# 6313|                                                         NSSLOWKEYRSAKey };
# 6314|   
# 6315|->             low_RSA_private_key.u.rsa = *rsaBlapiPrivKey;
# 6316|               low_RSA_public_key.u.rsa = *rsaBlapiPublicKey;
# 6317|   

Error: CPPCHECK_WARNING (CWE-476): [#def122]
nss-3.110/nss/cmd/fipstest/fipstest.c:6420: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: rsareq
# 6418|       memset(&rsaBlapiPublicKey, 0, sizeof(RSAPublicKey));
# 6419|   
# 6420|->     while (fgets(buf, sizeof buf, rsareq) != NULL) {
# 6421|           /* a comment or blank line */
# 6422|           if (buf[0] == '#' || buf[0] == '\n') {

Error: GCC_ANALYZER_WARNING (CWE-688): [#def123]
nss-3.110/nss/cmd/fipstest/fipstest.c:6420:12: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘fopen(reqfn, "r")’ where non-null expected
nss-3.110/nss/cmd/fipstest/fipstest.c:8741:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/fipstest/fipstest.c:8743:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8746:5: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8752:8: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8773:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8802:15: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:16: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8807:15: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8810:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8810:12: branch_false: following ‘false’ branch (when the strings are non-equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8813:20: branch_false: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8813:19: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/fipstest/fipstest.c:8815:13: branch_true: ...to here
nss-3.110/nss/cmd/fipstest/fipstest.c:8815:13: call_function: calling ‘rsa_sigver_test’ from ‘main’
# 6418|       memset(&rsaBlapiPublicKey, 0, sizeof(RSAPublicKey));
# 6419|   
# 6420|->     while (fgets(buf, sizeof buf, rsareq) != NULL) {
# 6421|           /* a comment or blank line */
# 6422|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def124]
nss-3.110/nss/cmd/fipstest/fipstest.c:6715: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: tlsreq
# 6713|       tlsreq = fopen(reqfn, "r");
# 6714|       tlsresp = stdout;
# 6715|->     while (fgets(buf, sizeof buf, tlsreq) != NULL) {
# 6716|           /* a comment or blank line */
# 6717|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def125]
nss-3.110/nss/cmd/fipstest/fipstest.c:7047: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: ikereq
# 7045|       ikereq = fopen(reqfn, "r");
# 7046|       ikeresp = stdout;
# 7047|->     while (fgets(buf, sizeof buf, ikereq) != NULL) {
# 7048|           /* a comment or blank line */
# 7049|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def126]
nss-3.110/nss/cmd/fipstest/fipstest.c:7437: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: ikereq
# 7435|       ikereq = fopen(reqfn, "r");
# 7436|       ikeresp = stdout;
# 7437|->     while (fgets(buf, sizeof buf, ikereq) != NULL) {
# 7438|           /* a comment or blank line */
# 7439|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def127]
nss-3.110/nss/cmd/fipstest/fipstest.c:7852: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: ikereq
# 7850|       ikereq = fopen(reqfn, "r");
# 7851|       ikeresp = stdout;
# 7852|->     while (fgets(buf, sizeof buf, ikereq) != NULL) {
# 7853|           /* a comment or blank line */
# 7854|           if (buf[0] == '#' || buf[0] == '\n') {

Error: CPPCHECK_WARNING (CWE-476): [#def128]
nss-3.110/nss/cmd/fipstest/fipstest.c:7961: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: seed_data
# 7959|               memset(gir, 0, gir_len);
# 7960|               memset(gir_new, 0, gir_len);
# 7961|->             memset(seed_data, 0, seed_data_len);
# 7962|               fputs(buf, ikeresp);
# 7963|               continue;

Error: CPPCHECK_WARNING (CWE-476): [#def129]
nss-3.110/nss/cmd/fipstest/fipstest.c:8332: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: kbkdf_req
# 8330|       kbkdf_resp = stdout;
# 8331|   
# 8332|->     while (fgets(buf, sizeof buf, kbkdf_req) != NULL) {
# 8333|           /* If we have a comment, check if it tells us the type of KDF to use.
# 8334|            * This differs per-file, so we have to parse it. */

Error: GCC_ANALYZER_WARNING (CWE-127): [#def130]
nss-3.110/nss/cmd/modutil/installparse.y:90:13: warning[-Wanalyzer-out-of-bounds]: buffer under-read
nss-3.110/nss/cmd/modutil/ytab.c:218:8: branch_true: following ‘true’ branch (when ‘yyn != 0’)...
nss-3.110/nss/cmd/modutil/ytab.c:219:9: branch_true: ...to here
nss-3.110/nss/cmd/modutil/installparse.y:90:13: danger: out-of-bounds read from byte -8 till byte -1 but ‘Pk11Install_yyvs’ starts at byte 0
#   88|   %%
#   89|   /*----------------------- Program Section --------------------------------*/
#   90|-> 
#   91|   /*************************************************************************/
#   92|   void

Error: GCC_ANALYZER_WARNING (CWE-127): [#def131]
nss-3.110/nss/cmd/modutil/installparse.y:109:26: warning[-Wanalyzer-out-of-bounds]: buffer under-read
nss-3.110/nss/cmd/modutil/ytab.c:218:8: branch_true: following ‘true’ branch (when ‘yyn != 0’)...
nss-3.110/nss/cmd/modutil/ytab.c:219:9: branch_true: ...to here
nss-3.110/nss/cmd/modutil/installparse.y:109:26: danger: out-of-bounds read from byte -8 till byte -1 but ‘Pk11Install_yyvs’ starts at byte 0

Error: GCC_ANALYZER_WARNING (CWE-457): [#def132]
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:943:9: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘c’
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:862:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:866:9: branch_false: ...to here
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:866:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:885:27: branch_false: ...to here
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:890:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:898:13: branch_false: ...to here
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:943:9: branch_true: following ‘true’ branch...
 branch_true: ...to here
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:943:9: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:943:9: branch_false: ...to here
nss-3.110/nss/cmd/modutil/lex.Pk11Install_yy.cpp:943:9: danger: use of uninitialized value ‘c’ here

Error: CPPCHECK_WARNING (CWE-758): [#def133]
nss-3.110/nss/cmd/nssdefaults/nssdefaults.c:130: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#  128|       }
#  129|       for (i = 0; i < sizeof(flags) * PR_BITS_PER_BYTE; i++) {
#  130|->         PRUint32 flag = (1 << i);
#  131|           const char *value;
#  132|           if ((flags & flag) == 0) {

Error: GCC_ANALYZER_WARNING (CWE-476): [#def134]
nss-3.110/nss/cmd/pk11ectest/pk11ectest.c:127:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/cmd/pk11ectest/pk11ectest.c:203:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/pk11ectest/pk11ectest.c:223:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/pk11ectest/pk11ectest.c:228:10: branch_false: ...to here
nss-3.110/nss/cmd/pk11ectest/pk11ectest.c:229:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/pk11ectest/pk11ectest.c:234:8: branch_false: ...to here
nss-3.110/nss/cmd/pk11ectest/pk11ectest.c:234:8: branch_true: following ‘true’ branch (when ‘nonnist != 0’)...
nss-3.110/nss/cmd/pk11ectest/pk11ectest.c:235:13: branch_true: ...to here
nss-3.110/nss/cmd/pk11ectest/pk11ectest.c:235:13: call_function: calling ‘ectest_curve_pkcs11’ from ‘main’
#  125|       }
#  126|       rv = SECFailure;
#  127|->     if (keyLengthEntry->encoded) {
#  128|           if (point.len == keyLengthEntry->len) {
#  129|               printf(" >>> Expected encoded CKA_EC_POINT and got a decoded value.\n");

Error: GCC_ANALYZER_WARNING (CWE-457): [#def135]
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:113:5: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘tag’
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:440:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:442:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:446:9: branch_false: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:446:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:453:9: branch_false: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:453:8: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:455:13: branch_true: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:455:12: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:457:13: branch_true: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:457:13: call_function: calling ‘aes_gcm_kat’ from ‘main’
#  111|       }
#  112|       memcpy(concatenated, input, inputlen);
#  113|->     memcpy(concatenated + inputlen, tag, tagsize);
#  114|   
#  115|       /* Import key into NSS. */

Error: GCC_ANALYZER_WARNING (CWE-775): [#def136]
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:208:13: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(respfn, "r")’
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:440:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:442:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:446:9: branch_false: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:446:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:453:9: branch_false: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:453:8: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:455:13: branch_true: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:455:12: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:457:13: branch_true: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:457:13: call_function: calling ‘aes_gcm_kat’ from ‘main’
#  206|       while (fgets(buf, sizeof buf, aesresp) != NULL) {
#  207|           /* a comment or blank line */
#  208|->         if (buf[0] == '#' || buf[0] == '\n') {
#  209|               continue;
#  210|           }

Error: GCC_ANALYZER_WARNING (CWE-401): [#def137]
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:208:13: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(respfn, "r")’
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:440:1: enter_function: entry to ‘main’
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:442:8: branch_false: following ‘false’ branch (when ‘argc > 1’)...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:446:9: branch_false: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:446:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:453:9: branch_false: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:453:8: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:455:13: branch_true: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:455:12: branch_true: following ‘true’ branch (when the strings are equal)...
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:457:13: branch_true: ...to here
nss-3.110/nss/cmd/pk11gcmtest/pk11gcmtest.c:457:13: call_function: calling ‘aes_gcm_kat’ from ‘main’
#  206|       while (fgets(buf, sizeof buf, aesresp) != NULL) {
#  207|           /* a comment or blank line */
#  208|->         if (buf[0] == '#' || buf[0] == '\n') {
#  209|               continue;
#  210|           }

Error: GCC_ANALYZER_WARNING (CWE-401): [#def138]
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3584:16: warning[-Wanalyzer-malloc-leak]: leak of ‘pTemplate’
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3579:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3587:5: branch_false: ...to here
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3591:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3597:5: branch_false: ...to here
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3613:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3620:35: branch_false: ...to here
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3620:35: acquire_memory: allocated here
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3622:8: branch_false: following ‘false’ branch (when ‘pTemplate’ is non-NULL)...
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3629:5: branch_false: ...to here
nss-3.110/nss/cmd/pk11mode/pk11mode.c:3584:16: danger: ‘pTemplate’ leaks here; was allocated at [(7)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/6)
# 3582|                     pSlotList[slotID], crv,
# 3583|                     PKM_CK_RVtoStr(crv));
# 3584|->         return crv;
# 3585|       }
# 3586|   

Error: CPPCHECK_WARNING (CWE-369): [#def139]
nss-3.110/nss/cmd/rsaperf/rsaperf.c:102: error[zerodiv]: Division by zero.
#  100|   
#  101|       LL_I2L(tmp, divisor);
#  102|->     LL_DIV(ctx->interval, ctx->interval, tmp);
#  103|   
#  104|       timingUpdate(ctx);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def140]
nss-3.110/nss/cmd/shlibsign/shlibsign.c:1176:26: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘hash’
nss-3.110/nss/cmd/shlibsign/shlibsign.c:1097:8: branch_true: following ‘true’ branch (when ‘hash’ is NULL)...
nss-3.110/nss/cmd/shlibsign/shlibsign.c:1098:16: branch_true: ...to here
nss-3.110/nss/cmd/shlibsign/shlibsign.c:1100:8: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/shlibsign/shlibsign.c:1101:20: branch_true: ...to here
nss-3.110/nss/cmd/shlibsign/shlibsign.c:1105:8: branch_true: following ‘true’ branch (when ‘key’ is NULL)...
nss-3.110/nss/cmd/shlibsign/shlibsign.c:1106:9: branch_true: ...to here
nss-3.110/nss/cmd/shlibsign/shlibsign.c:1172:8: branch_false: following ‘false’ branch (when ‘crv == 0’)...
nss-3.110/nss/cmd/shlibsign/shlibsign.c:1176:26: branch_false: ...to here
nss-3.110/nss/cmd/shlibsign/shlibsign.c:1176:26: danger: dereference of NULL ‘hash’
# 1174|           return crv;
# 1175|       }
# 1176|->     hmacMech.mechanism = hash->hmac;
# 1177|   
# 1178|       /* compute the digest */

Error: GCC_ANALYZER_WARNING (CWE-775): [#def141]
nss-3.110/nss/cmd/signtool/certgen.c:678:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(PORT_ZAlloc_Util(12), "wb")’
nss-3.110/nss/cmd/signtool/certgen.c:666:16: acquire_resource: opened here
nss-3.110/nss/cmd/signtool/certgen.c:666:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/certgen.c:673:17: branch_false: ...to here
nss-3.110/nss/cmd/signtool/certgen.c:678:8: danger: ‘fopen(PORT_ZAlloc_Util(12), "wb")’ leaks here; was opened at [(1)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/0)
#  676|       SEC_PKCS7DestroyContentInfo(certChain);
#  677|   
#  678|->     if (encodedCertChain) {
#  679|           fprintf(out, "Content-type: application/x-x509-ca-cert\n\n");
#  680|           fwrite(encodedCertChain->data, 1, encodedCertChain->len,

Error: GCC_ANALYZER_WARNING (CWE-401): [#def142]
nss-3.110/nss/cmd/signtool/certgen.c:678:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(PORT_ZAlloc_Util(12), "wb")’
nss-3.110/nss/cmd/signtool/certgen.c:666:16: acquire_memory: allocated here
nss-3.110/nss/cmd/signtool/certgen.c:666:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/certgen.c:673:17: branch_false: ...to here
nss-3.110/nss/cmd/signtool/certgen.c:678:8: danger: ‘fopen(PORT_ZAlloc_Util(12), "wb")’ leaks here; was allocated at [(1)](sarif:/runs/0/results/1/codeFlows/0/threadFlows/0/locations/0)
#  676|       SEC_PKCS7DestroyContentInfo(certChain);
#  677|   
#  678|->     if (encodedCertChain) {
#  679|           fprintf(out, "Content-type: application/x-x509-ca-cert\n\n");
#  680|           fwrite(encodedCertChain->data, 1, encodedCertChain->len,

Error: GCC_ANALYZER_WARNING (CWE-476): [#def143]
nss-3.110/nss/cmd/signtool/javascript.c:718:12: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/cmd/signtool/javascript.c:1054:1: enter_function: entry to ‘extract_js’
nss-3.110/nss/cmd/signtool/javascript.c:1086:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/javascript.c:1096:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/javascript.c:1114:10: call_function: calling ‘FB_Create’ from ‘extract_js’
nss-3.110/nss/cmd/signtool/javascript.c:1114:10: return_function: returning to ‘extract_js’ from ‘FB_Create’
nss-3.110/nss/cmd/signtool/javascript.c:1118:22: call_function: inlined call to ‘FB_GetLineNum’ from ‘extract_js’
#  716|   FB_GetLineNum(FileBuffer *fb)
#  717|   {
#  718|->     return fb->lineNum;
#  719|   }
#  720|   

Error: GCC_ANALYZER_WARNING (CWE-775): [#def144]
nss-3.110/nss/cmd/signtool/sign.c:292:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(&sf_file, "rb")’
nss-3.110/nss/cmd/signtool/sign.c:264:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:269:12: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:271:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:279:16: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:285:15: acquire_resource: opened here
nss-3.110/nss/cmd/signtool/sign.c:285:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:292:16: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:292:8: danger: ‘fopen(&sf_file, "rb")’ leaks here; was opened at [(5)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/4)
#  290|       }
#  291|   
#  292|->     if ((out = fopen(pk7_file, "wb")) == NULL) {
#  293|           PR_fprintf(errorFD, "%s: Can't open %s for writing\n", PROGRAM_NAME,
#  294|                      sf_file);

Error: GCC_ANALYZER_WARNING (CWE-401): [#def145]
nss-3.110/nss/cmd/signtool/sign.c:292:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(&sf_file, "rb")’
nss-3.110/nss/cmd/signtool/sign.c:264:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:269:12: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:271:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:279:16: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:285:15: acquire_memory: allocated here
nss-3.110/nss/cmd/signtool/sign.c:285:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:292:16: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:292:8: danger: ‘fopen(&sf_file, "rb")’ leaks here; was allocated at [(5)](sarif:/runs/0/results/1/codeFlows/0/threadFlows/0/locations/4)
#  290|       }
#  291|   
#  292|->     if ((out = fopen(pk7_file, "wb")) == NULL) {
#  293|           PR_fprintf(errorFD, "%s: Can't open %s for writing\n", PROGRAM_NAME,
#  294|                      sf_file);

Error: GCC_ANALYZER_WARNING (CWE-775): [#def146]
nss-3.110/nss/cmd/signtool/sign.c:726:8: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(manifile, "rb")’
nss-3.110/nss/cmd/signtool/sign.c:721:19: acquire_resource: opened here
nss-3.110/nss/cmd/signtool/sign.c:721:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:726:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:726:8: danger: ‘fopen(manifile, "rb")’ leaks here; was opened at [(1)](sarif:/runs/0/results/2/codeFlows/0/threadFlows/0/locations/0)
#  724|       }
#  725|   
#  726|->     if ((sfFile = fopen(whofile, "wb")) == NULL) {
#  727|           perror(who);
#  728|           exit(ERRX);

Error: GCC_ANALYZER_WARNING (CWE-401): [#def147]
nss-3.110/nss/cmd/signtool/sign.c:726:8: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(manifile, "rb")’
nss-3.110/nss/cmd/signtool/sign.c:721:19: acquire_memory: allocated here
nss-3.110/nss/cmd/signtool/sign.c:721:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:726:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:726:8: danger: ‘fopen(manifile, "rb")’ leaks here; was allocated at [(1)](sarif:/runs/0/results/3/codeFlows/0/threadFlows/0/locations/0)
#  724|       }
#  725|   
#  726|->     if ((sfFile = fopen(whofile, "wb")) == NULL) {
#  727|           perror(who);
#  728|           exit(ERRX);

Error: GCC_ANALYZER_WARNING (CWE-775): [#def148]
nss-3.110/nss/cmd/signtool/sign.c:736:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(&whofile, "wb")’
nss-3.110/nss/cmd/signtool/sign.c:721:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:726:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:726:19: acquire_resource: opened here
nss-3.110/nss/cmd/signtool/sign.c:726:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:731:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:733:8: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/signtool/sign.c:734:24: branch_true: ...to here
nss-3.110/nss/cmd/signtool/sign.c:736:9: danger: ‘fopen(&whofile, "wb")’ leaks here; was opened at [(3)](sarif:/runs/0/results/4/codeFlows/0/threadFlows/0/locations/2)
#  734|           name = (char *)PORT_ZAlloc(BUFSIZ);
#  735|   
#  736|->     if (buf == NULL || name == NULL)
#  737|           out_of_memory();
#  738|   

Error: GCC_ANALYZER_WARNING (CWE-775): [#def149]
nss-3.110/nss/cmd/signtool/sign.c:736:9: warning[-Wanalyzer-file-leak]: leak of FILE ‘fopen(manifile, "rb")’
nss-3.110/nss/cmd/signtool/sign.c:721:19: acquire_resource: opened here
nss-3.110/nss/cmd/signtool/sign.c:721:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:726:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:726:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:731:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:733:8: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/signtool/sign.c:734:24: branch_true: ...to here
nss-3.110/nss/cmd/signtool/sign.c:736:9: danger: ‘fopen(manifile, "rb")’ leaks here; was opened at [(1)](sarif:/runs/0/results/5/codeFlows/0/threadFlows/0/locations/0)
#  734|           name = (char *)PORT_ZAlloc(BUFSIZ);
#  735|   
#  736|->     if (buf == NULL || name == NULL)
#  737|           out_of_memory();
#  738|   

Error: GCC_ANALYZER_WARNING (CWE-401): [#def150]
nss-3.110/nss/cmd/signtool/sign.c:736:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(&whofile, "wb")’
nss-3.110/nss/cmd/signtool/sign.c:721:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:726:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:726:19: acquire_memory: allocated here
nss-3.110/nss/cmd/signtool/sign.c:726:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:731:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:733:8: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/signtool/sign.c:734:24: branch_true: ...to here
nss-3.110/nss/cmd/signtool/sign.c:736:9: danger: ‘fopen(&whofile, "wb")’ leaks here; was allocated at [(3)](sarif:/runs/0/results/6/codeFlows/0/threadFlows/0/locations/2)
#  734|           name = (char *)PORT_ZAlloc(BUFSIZ);
#  735|   
#  736|->     if (buf == NULL || name == NULL)
#  737|           out_of_memory();
#  738|   

Error: GCC_ANALYZER_WARNING (CWE-401): [#def151]
nss-3.110/nss/cmd/signtool/sign.c:736:9: warning[-Wanalyzer-malloc-leak]: leak of ‘fopen(manifile, "rb")’
nss-3.110/nss/cmd/signtool/sign.c:721:19: acquire_memory: allocated here
nss-3.110/nss/cmd/signtool/sign.c:721:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:726:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:726:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:731:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:733:8: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/signtool/sign.c:734:24: branch_true: ...to here
nss-3.110/nss/cmd/signtool/sign.c:736:9: danger: ‘fopen(manifile, "rb")’ leaks here; was allocated at [(1)](sarif:/runs/0/results/7/codeFlows/0/threadFlows/0/locations/0)
#  734|           name = (char *)PORT_ZAlloc(BUFSIZ);
#  735|   
#  736|->     if (buf == NULL || name == NULL)
#  737|           out_of_memory();
#  738|   

Error: GCC_ANALYZER_WARNING (CWE-688): [#def152]
nss-3.110/nss/cmd/signtool/sign.c:749:9: warning[-Wanalyzer-null-argument]: use of NULL ‘PORT_ZAlloc_Util(8192)’ where non-null expected
nss-3.110/nss/cmd/signtool/sign.c:721:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:726:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:726:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:731:19: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:733:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:736:9: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:736:8: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/signtool/sign.c:737:9: branch_true: ...to here
nss-3.110/nss/cmd/signtool/sign.c:743:8: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/signtool/sign.c:749:9: branch_false: ...to here
nss-3.110/nss/cmd/signtool/sign.c:749:9: danger: argument 1 (‘PORT_ZAlloc_Util(8192)’) NULL where non-null expected
#  747|       }
#  748|   
#  749|->     if (strncmp(buf, "Manifest-Version:", 17)) {
#  750|           PR_fprintf(errorFD, "%s: not a manifest file!\n", PROGRAM_NAME);
#  751|           errorCount++;

Error: GCC_ANALYZER_WARNING (CWE-401): [#def153]
nss-3.110/nss/cmd/smimetools/cmsutil.c:1392:17: warning[-Wanalyzer-malloc-leak]: leak of ‘options.password’
nss-3.110/nss/cmd/smimetools/cmsutil.c:1183:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/smimetools/cmsutil.c:1184:17: branch_true: ...to here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1386:20: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/smimetools/cmsutil.c:1392:36: branch_false: ...to here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1392:36: acquire_memory: allocated here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1183:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/smimetools/cmsutil.c:1184:17: branch_true: ...to here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1386:20: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/smimetools/cmsutil.c:1392:36: branch_false: ...to here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1392:17: danger: ‘options.password’ leaks here; was allocated at [(7)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/6)
# 1390|                   }
# 1391|   
# 1392|->                 options.password = strdup(optstate->value);
# 1393|                   break;
# 1394|   

Error: GCC_ANALYZER_WARNING (CWE-401): [#def154]
nss-3.110/nss/cmd/smimetools/cmsutil.c:1402:17: warning[-Wanalyzer-malloc-leak]: leak of ‘options.pwfile’
nss-3.110/nss/cmd/smimetools/cmsutil.c:1183:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/smimetools/cmsutil.c:1184:17: branch_true: ...to here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1396:20: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/smimetools/cmsutil.c:1402:34: branch_false: ...to here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1402:34: acquire_memory: allocated here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1183:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/smimetools/cmsutil.c:1184:17: branch_true: ...to here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1396:20: branch_false: following ‘false’ branch...
nss-3.110/nss/cmd/smimetools/cmsutil.c:1402:34: branch_false: ...to here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1402:17: danger: ‘options.pwfile’ leaks here; was allocated at [(7)](sarif:/runs/0/results/1/codeFlows/0/threadFlows/0/locations/6)
# 1400|                   }
# 1401|   
# 1402|->                 options.pwfile = strdup(optstate->value);
# 1403|                   break;
# 1404|   

Error: GCC_ANALYZER_WARNING (CWE-401): [#def155]
nss-3.110/nss/cmd/smimetools/cmsutil.c:1430:21: warning[-Wanalyzer-malloc-leak]: leak of ‘strdup(*<unknown>.value)’
nss-3.110/nss/cmd/smimetools/cmsutil.c:1183:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/smimetools/cmsutil.c:1184:17: branch_true: ...to here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1429:34: acquire_memory: allocated here
nss-3.110/nss/cmd/smimetools/cmsutil.c:1430:21: danger: ‘strdup(*<unknown>.value)’ leaks here; was allocated at [(5)](sarif:/runs/0/results/2/codeFlows/0/threadFlows/0/locations/4)
# 1428|   
# 1429|                   usageType = atoi(strdup(optstate->value));
# 1430|->                 if (usageType < certUsageSSLClient || usageType > certUsageAnyCA)
# 1431|                       return -1;
# 1432|                   options.certUsage = (SECCertUsage)usageType;

Error: CPPCHECK_WARNING (CWE-401): [#def156]
nss-3.110/nss/cmd/smimetools/cmsutil.c:1431: error[memleak]: Memory leak: options.password
# 1429|                   usageType = atoi(strdup(optstate->value));
# 1430|                   if (usageType < certUsageSSLClient || usageType > certUsageAnyCA)
# 1431|->                     return -1;
# 1432|                   options.certUsage = (SECCertUsage)usageType;
# 1433|                   break;

Error: CPPCHECK_WARNING (CWE-401): [#def157]
nss-3.110/nss/cmd/smimetools/cmsutil.c:1431: error[memleak]: Memory leak: options.pwfile
# 1429|                   usageType = atoi(strdup(optstate->value));
# 1430|                   if (usageType < certUsageSSLClient || usageType > certUsageAnyCA)
# 1431|->                     return -1;
# 1432|                   options.certUsage = (SECCertUsage)usageType;
# 1433|                   break;

Error: CPPCHECK_WARNING (CWE-401): [#def158]
nss-3.110/nss/cmd/smimetools/cmsutil.c:1431: error[memleak]: Memory leak: signOptions.encryptionKeyPreferenceNick
# 1429|                   usageType = atoi(strdup(optstate->value));
# 1430|                   if (usageType < certUsageSSLClient || usageType > certUsageAnyCA)
# 1431|->                     return -1;
# 1432|                   options.certUsage = (SECCertUsage)usageType;
# 1433|                   break;

Error: CPPCHECK_WARNING (CWE-682): [#def159]
nss-3.110/nss/cmd/strsclnt/strsclnt.c:840: error[nullPointerArithmetic]: Pointer addition with NULL pointer.
#  838|           SSL_SetSockPeerID(ssl_sock, sockPeerIDString);
#  839|           SSL_HandshakeCallback(ssl_sock, myHandshakeCallback,
#  840|->                               (char *)NULL + thisPeerID);
#  841|   #else
#  842|               /* force a full handshake by setting the no cache option */

Error: GCC_ANALYZER_WARNING (CWE-835): [#def160]
nss-3.110/nss/cmd/strsclnt/strsclnt.c:931:33: warning[-Wanalyzer-infinite-loop]: infinite loop
nss-3.110/nss/cmd/strsclnt/strsclnt.c:913:1: enter_function: entry to ‘StressClient_GetClientAuthData’
nss-3.110/nss/cmd/strsclnt/strsclnt.c:931:33: danger: infinite loop here
nss-3.110/nss/cmd/strsclnt/strsclnt.c:931:17: branch_false: if it ever follows ‘false’ branch, it will always do so...
 branch_false: ...to here
#  929|       if (Cert_And_Key && Cert_And_Key->nickname) {
#  930|           while (PR_TRUE) {
#  931|->             if (Cert_And_Key && Cert_And_Key->lock) {
#  932|                   int timeout = 0;
#  933|                   PR_Lock(Cert_And_Key->lock);

Error: GCC_ANALYZER_WARNING (CWE-401): [#def161]
nss-3.110/nss/cmd/tests/remtest.c:64:27: warning[-Wanalyzer-malloc-leak]: leak of ‘certDir’
nss-3.110/nss/cmd/tests/remtest.c:60:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/tests/remtest.c:61:17: branch_true: ...to here
nss-3.110/nss/cmd/tests/remtest.c:64:27: acquire_memory: allocated here
nss-3.110/nss/cmd/tests/remtest.c:60:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/tests/remtest.c:61:17: branch_true: ...to here
nss-3.110/nss/cmd/tests/remtest.c:64:27: danger: ‘certDir’ leaks here; was allocated at [(5)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/4)
#   62|   
#   63|               case 'd':
#   64|->                 certDir = strdup(optstate->value);
#   65|                   certDir = SECU_ConfigDirectory(certDir);
#   66|                   break;

Error: GCC_ANALYZER_WARNING (CWE-401): [#def162]
nss-3.110/nss/cmd/tests/secmodtest.c:86:25: warning[-Wanalyzer-malloc-leak]: leak of ‘dbDir’
nss-3.110/nss/cmd/tests/secmodtest.c:83:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/tests/secmodtest.c:84:17: branch_true: ...to here
nss-3.110/nss/cmd/tests/secmodtest.c:86:25: acquire_memory: allocated here
nss-3.110/nss/cmd/tests/secmodtest.c:83:12: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/tests/secmodtest.c:84:17: branch_true: ...to here
nss-3.110/nss/cmd/tests/secmodtest.c:84:9: branch_true: following ‘true’ branch...
nss-3.110/nss/cmd/tests/secmodtest.c:85:13: branch_true: ...to here
nss-3.110/nss/cmd/tests/secmodtest.c:86:25: danger: ‘dbDir’ leaks here; was allocated at [(3)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/2)
#   84|           switch (optstate->option) {
#   85|               case 'd':
#   86|->                 dbDir = strdup(optstate->value);
#   87|                   break;
#   88|           }

Error: CPPCHECK_WARNING (CWE-457): [#def163]
nss-3.110/nss/cmd/tstclnt/tstclnt.c:509: error[uninitvar]: Uninitialized variable: revTestsDoNotCheck.preferred_methods
#  507|           CERT_REV_MI_REQUIRE_SOME_FRESH_INFO_AVAILABLE;
#  508|   
#  509|->     rev.chainTests = revTestsDoNotCheck;
#  510|       rev.leafTests = revTestsDoNotCheck;
#  511|   

Error: CPPCHECK_WARNING (CWE-457): [#def164]
nss-3.110/nss/cmd/tstclnt/tstclnt.c:560: error[uninitvar]: Uninitialized variable: revTestsOverallHardFail.preferred_methods
#  558|           revTestsOverallHardFail.cert_rev_flags_per_method = methodFlagsCheckHardFail;
#  559|       }
#  560|->     rev.leafTests = revTestsOverallHardFail;
#  561|       rev.chainTests =
#  562|           sca->requireDataForIntermediates ? revTestsOverallHardFail : revTestsDoNotCheck;

Error: CPPCHECK_WARNING (CWE-562): [#def165]
nss-3.110/nss/gtests/google_test/gtest/include/gtest/gtest-matchers.h:734: error[returnReference]: Reference to local variable returned.
#  732|     template <typename T>
#  733|     static const T& Unwrap(std::reference_wrapper<T> v) {
#  734|->     return v;
#  735|     }
#  736|   

Error: CPPCHECK_WARNING (CWE-664): [#def166]
nss-3.110/nss/gtests/google_test/gtest/include/gtest/internal/gtest-param-util.h:151: error[mismatchingContainers]: Iterators of different containers 'impl_' and 'other.impl_' are used together.
#  149|     }
#  150|     bool operator==(const ParamIterator& other) const {
#  151|->     return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_);
#  152|     }
#  153|     bool operator!=(const ParamIterator& other) const {

Error: CPPCHECK_WARNING (CWE-457): [#def167]
nss-3.110/nss/gtests/pk11_gtest/pk11_hpke_unittest.cc:285: warning[uninitvar]: Uninitialized variable: exp.len
#  283|           }
#  284|         }
#  285|->       all.push_back(exp);
#  286|       }
#  287|   

Error: CPPCHECK_WARNING (CWE-562): [#def168]
nss-3.110/nss/gtests/ssl_gtest/tls_agent.h:310: error[danglingLifetime]: Non-local variable 'handshake_callback_' will use lambda that captures local variable 'step'.
#  308|   
#  309|     void SetHandshakeCallback(HandshakeCallbackFunction handshake_callback) {
#  310|->     handshake_callback_ = handshake_callback;
#  311|     }
#  312|   

Error: CPPCHECK_WARNING (CWE-562): [#def169]
nss-3.110/nss/gtests/ssl_gtest/tls_agent.h:315: error[danglingLifetime]: Non-local variable 'auth_certificate_callback_' will use lambda that captures local variable 'called'.
#  313|     void SetAuthCertificateCallback(
#  314|         AuthCertificateCallbackFunction auth_certificate_callback) {
#  315|->     auth_certificate_callback_ = auth_certificate_callback;
#  316|     }
#  317|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def170]
nss-3.110/nss/lib/certhigh/ocsp.c:5891:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘statusContext’
nss-3.110/nss/lib/certhigh/ocsp.c:5832:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/certhigh/ocsp.c:5863:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/certhigh/ocsp.c:5868:21: branch_false: ...to here
nss-3.110/nss/lib/certhigh/ocsp.c:5873:8: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/certhigh/ocsp.c:5874:14: branch_true: ...to here
nss-3.110/nss/lib/certhigh/ocsp.c:5875:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/certhigh/ocsp.c:5878:25: branch_false: ...to here
nss-3.110/nss/lib/certhigh/ocsp.c:5891:9: danger: dereference of NULL ‘statusContext’
# 5889|        * Get rid of old url and name if there.
# 5890|        */
# 5891|->     if (statusContext->defaultResponderNickname != NULL)
# 5892|           PORT_Free(statusContext->defaultResponderNickname);
# 5893|       if (statusContext->defaultResponderURI != NULL)

Error: GCC_ANALYZER_WARNING (CWE-476): [#def171]
nss-3.110/nss/lib/crmf/crmfpop.c:360:38: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘privKeyTemplate’
nss-3.110/nss/lib/crmf/crmfpop.c:440:1: enter_function: entry to ‘crmf_add_privkey_dhmac’
nss-3.110/nss/lib/crmf/crmfpop.c:453:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/crmf/crmfpop.c:456:5: branch_false: ...to here
nss-3.110/nss/lib/crmf/crmfpop.c:461:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/crmf/crmfpop.c:464:5: branch_false: ...to here
nss-3.110/nss/lib/crmf/crmfpop.c:467:10: call_function: inlined call to ‘crmf_get_template_for_privkey’ from ‘crmf_add_privkey_dhmac’
nss-3.110/nss/lib/crmf/crmfpop.c:467:10: call_function: calling ‘crmf_encode_popoprivkey’ from ‘crmf_add_privkey_dhmac’
#  358|        * most tag myself. -javi
#  359|        */
#  360|->     derTemp.data[0] = (unsigned char)privKeyTemplate->kind;
#  361|       derTemp.data[1] = (unsigned char)derTemp.len;
#  362|       derTemp.len += 2;

Error: GCC_ANALYZER_WARNING (CWE-457): [#def172]
nss-3.110/nss/lib/dev/devtoken.c:304:17: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘&staticObjects’
nss-3.110/nss/lib/dev/devtoken.c:665:1: enter_function: entry to ‘nssToken_FindCertificatesByEmail’
nss-3.110/nss/lib/dev/devtoken.c:688:15: call_function: calling ‘find_objects’ from ‘nssToken_FindCertificatesByEmail’
#  302|               objectHandles = nss_ZNEWARRAY(NULL, CK_OBJECT_HANDLE, arraySize);
#  303|               if (objectHandles) {
#  304|->                 PORT_Memcpy(objectHandles, staticObjects,
#  305|                               OBJECT_STACK_SIZE * sizeof(objectHandles[1]));
#  306|               }

Error: COMPILER_WARNING: [#def173]
nss-3.110/nss/lib/freebl/aes-x86.c:28:5: note[note]: called from here
#   26|       pre_align __m128i tmp post_align;
#   27|       keySchedule[0] = _mm_loadu_si128((__m128i *)key);
#   28|->     EXPAND_KEY128(keySchedule[0], 0x01, keySchedule[1]);
#   29|       EXPAND_KEY128(keySchedule[1], 0x02, keySchedule[2]);
#   30|       EXPAND_KEY128(keySchedule[2], 0x04, keySchedule[3]);

Error: COMPILER_WARNING: [#def174]
nss-3.110/nss/lib/freebl/aes-x86.c:29:5: note[note]: called from here
#   27|       keySchedule[0] = _mm_loadu_si128((__m128i *)key);
#   28|       EXPAND_KEY128(keySchedule[0], 0x01, keySchedule[1]);
#   29|->     EXPAND_KEY128(keySchedule[1], 0x02, keySchedule[2]);
#   30|       EXPAND_KEY128(keySchedule[2], 0x04, keySchedule[3]);
#   31|       EXPAND_KEY128(keySchedule[3], 0x08, keySchedule[4]);

Error: COMPILER_WARNING: [#def175]
nss-3.110/nss/lib/freebl/aes-x86.c:30:5: note[note]: called from here
#   28|       EXPAND_KEY128(keySchedule[0], 0x01, keySchedule[1]);
#   29|       EXPAND_KEY128(keySchedule[1], 0x02, keySchedule[2]);
#   30|->     EXPAND_KEY128(keySchedule[2], 0x04, keySchedule[3]);
#   31|       EXPAND_KEY128(keySchedule[3], 0x08, keySchedule[4]);
#   32|       EXPAND_KEY128(keySchedule[4], 0x10, keySchedule[5]);

Error: COMPILER_WARNING: [#def176]
nss-3.110/nss/lib/freebl/aes-x86.c:31:5: note[note]: called from here
#   29|       EXPAND_KEY128(keySchedule[1], 0x02, keySchedule[2]);
#   30|       EXPAND_KEY128(keySchedule[2], 0x04, keySchedule[3]);
#   31|->     EXPAND_KEY128(keySchedule[3], 0x08, keySchedule[4]);
#   32|       EXPAND_KEY128(keySchedule[4], 0x10, keySchedule[5]);
#   33|       EXPAND_KEY128(keySchedule[5], 0x20, keySchedule[6]);

Error: COMPILER_WARNING: [#def177]
nss-3.110/nss/lib/freebl/aes-x86.c:32:5: note[note]: called from here
#   30|       EXPAND_KEY128(keySchedule[2], 0x04, keySchedule[3]);
#   31|       EXPAND_KEY128(keySchedule[3], 0x08, keySchedule[4]);
#   32|->     EXPAND_KEY128(keySchedule[4], 0x10, keySchedule[5]);
#   33|       EXPAND_KEY128(keySchedule[5], 0x20, keySchedule[6]);
#   34|       EXPAND_KEY128(keySchedule[6], 0x40, keySchedule[7]);

Error: COMPILER_WARNING: [#def178]
nss-3.110/nss/lib/freebl/aes-x86.c:33:5: note[note]: called from here
#   31|       EXPAND_KEY128(keySchedule[3], 0x08, keySchedule[4]);
#   32|       EXPAND_KEY128(keySchedule[4], 0x10, keySchedule[5]);
#   33|->     EXPAND_KEY128(keySchedule[5], 0x20, keySchedule[6]);
#   34|       EXPAND_KEY128(keySchedule[6], 0x40, keySchedule[7]);
#   35|       EXPAND_KEY128(keySchedule[7], 0x80, keySchedule[8]);

Error: COMPILER_WARNING: [#def179]
nss-3.110/nss/lib/freebl/aes-x86.c:34:5: note[note]: called from here
#   32|       EXPAND_KEY128(keySchedule[4], 0x10, keySchedule[5]);
#   33|       EXPAND_KEY128(keySchedule[5], 0x20, keySchedule[6]);
#   34|->     EXPAND_KEY128(keySchedule[6], 0x40, keySchedule[7]);
#   35|       EXPAND_KEY128(keySchedule[7], 0x80, keySchedule[8]);
#   36|       EXPAND_KEY128(keySchedule[8], 0x1B, keySchedule[9]);

Error: COMPILER_WARNING: [#def180]
nss-3.110/nss/lib/freebl/aes-x86.c:35:5: note[note]: called from here
#   33|       EXPAND_KEY128(keySchedule[5], 0x20, keySchedule[6]);
#   34|       EXPAND_KEY128(keySchedule[6], 0x40, keySchedule[7]);
#   35|->     EXPAND_KEY128(keySchedule[7], 0x80, keySchedule[8]);
#   36|       EXPAND_KEY128(keySchedule[8], 0x1B, keySchedule[9]);
#   37|       EXPAND_KEY128(keySchedule[9], 0x36, keySchedule[10]);

Error: COMPILER_WARNING: [#def181]
nss-3.110/nss/lib/freebl/aes-x86.c:36:5: note[note]: called from here
#   34|       EXPAND_KEY128(keySchedule[6], 0x40, keySchedule[7]);
#   35|       EXPAND_KEY128(keySchedule[7], 0x80, keySchedule[8]);
#   36|->     EXPAND_KEY128(keySchedule[8], 0x1B, keySchedule[9]);
#   37|       EXPAND_KEY128(keySchedule[9], 0x36, keySchedule[10]);
#   38|   }

Error: COMPILER_WARNING: [#def182]
nss-3.110/nss/lib/freebl/aes-x86.c:37:5: note[note]: called from here
#   35|       EXPAND_KEY128(keySchedule[7], 0x80, keySchedule[8]);
#   36|       EXPAND_KEY128(keySchedule[8], 0x1B, keySchedule[9]);
#   37|->     EXPAND_KEY128(keySchedule[9], 0x36, keySchedule[10]);
#   38|   }
#   39|   

Error: CPPCHECK_WARNING (CWE-758): [#def183]
nss-3.110/nss/lib/freebl/aeskeywrap.c:600: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#  598|       /* verify ICV magic */
#  599|       magic = decode_PRUint32_BE(iv);
#  600|->     good = PORT_CT_EQ(magic, AES_KEY_WRAP_ICV2_INT32);
#  601|       /* fetch and verify plain text length */
#  602|       outLen = decode_PRUint32_BE(iv + AES_KEY_WRAP_ICV2_LEN);

Error: CPPCHECK_WARNING (CWE-758): [#def184]
nss-3.110/nss/lib/freebl/aeskeywrap.c:603: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#  601|       /* fetch and verify plain text length */
#  602|       outLen = decode_PRUint32_BE(iv + AES_KEY_WRAP_ICV2_LEN);
#  603|->     good &= PORT_CT_LE(outLen, paddedLen);
#  604|       /* now verify the padding */
#  605|       padLen = paddedLen - outLen;

Error: CPPCHECK_WARNING (CWE-758): [#def185]
nss-3.110/nss/lib/freebl/aeskeywrap.c:607: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#  605|       padLen = paddedLen - outLen;
#  606|       padLen2 = BLOCK_PAD_POWER2(outLen, AES_KEY_WRAP_BLOCK_SIZE);
#  607|->     good &= PORT_CT_EQ(padLen, padLen2);
#  608|       for (i = 0; i < AES_KEY_WRAP_BLOCK_SIZE; i++) {
#  609|           unsigned int doTest = PORT_CT_GT(padLen, i);

Error: CPPCHECK_WARNING (CWE-758): [#def186]
nss-3.110/nss/lib/freebl/aeskeywrap.c:609: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#  607|       good &= PORT_CT_EQ(padLen, padLen2);
#  608|       for (i = 0; i < AES_KEY_WRAP_BLOCK_SIZE; i++) {
#  609|->         unsigned int doTest = PORT_CT_GT(padLen, i);
#  610|           unsigned int result = PORT_CT_ZERO(newBuf[paddedLen - i - 1]);
#  611|           good &= PORT_CT_SEL(doTest, result, PORT_CT_TRUE);

Error: CPPCHECK_WARNING (CWE-758): [#def187]
nss-3.110/nss/lib/freebl/aeskeywrap.c:610: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#  608|       for (i = 0; i < AES_KEY_WRAP_BLOCK_SIZE; i++) {
#  609|           unsigned int doTest = PORT_CT_GT(padLen, i);
#  610|->         unsigned int result = PORT_CT_ZERO(newBuf[paddedLen - i - 1]);
#  611|           good &= PORT_CT_SEL(doTest, result, PORT_CT_TRUE);
#  612|       }

Error: COMPILER_WARNING: [#def188]
nss-3.110/nss/lib/freebl/gcm-x86.c:61:13: note[note]: called from here
#   59|   
#   60|           /* Do binary mult ghash->X = Ci * ghash->H. */
#   61|->         C = _mm_clmulepi64_si128(Ci, ghash->h, 0x00);
#   62|           D = _mm_clmulepi64_si128(Ci, ghash->h, 0x11);
#   63|           E = _mm_clmulepi64_si128(Ci, ghash->h, 0x01);

Error: COMPILER_WARNING: [#def189]
nss-3.110/nss/lib/freebl/gcm-x86.c:62:13: note[note]: called from here
#   60|           /* Do binary mult ghash->X = Ci * ghash->H. */
#   61|           C = _mm_clmulepi64_si128(Ci, ghash->h, 0x00);
#   62|->         D = _mm_clmulepi64_si128(Ci, ghash->h, 0x11);
#   63|           E = _mm_clmulepi64_si128(Ci, ghash->h, 0x01);
#   64|           F = _mm_clmulepi64_si128(Ci, ghash->h, 0x10);

Error: COMPILER_WARNING: [#def190]
nss-3.110/nss/lib/freebl/gcm-x86.c:63:13: note[note]: called from here
#   61|           C = _mm_clmulepi64_si128(Ci, ghash->h, 0x00);
#   62|           D = _mm_clmulepi64_si128(Ci, ghash->h, 0x11);
#   63|->         E = _mm_clmulepi64_si128(Ci, ghash->h, 0x01);
#   64|           F = _mm_clmulepi64_si128(Ci, ghash->h, 0x10);
#   65|           tmp = _mm_xor_si128(E, F);

Error: COMPILER_WARNING: [#def191]
nss-3.110/nss/lib/freebl/gcm-x86.c:64:13: note[note]: called from here
#   62|           D = _mm_clmulepi64_si128(Ci, ghash->h, 0x11);
#   63|           E = _mm_clmulepi64_si128(Ci, ghash->h, 0x01);
#   64|->         F = _mm_clmulepi64_si128(Ci, ghash->h, 0x10);
#   65|           tmp = _mm_xor_si128(E, F);
#   66|           z_high = _mm_xor_si128(tmp, _mm_slli_si128(D, 8));

Error: GCC_ANALYZER_WARNING (CWE-688): [#def192]
nss-3.110/nss/lib/freebl/genload.c:37:5: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘resolved’ where non-null expected
nss-3.110/nss/lib/freebl/lowhash_vector.c:218:1: enter_function: entry to ‘NSSLOWHASH_Length’
nss-3.110/nss/lib/freebl/lowhash_vector.c:220:9: call_function: inlined call to ‘freebl_InitVector’ from ‘NSSLOWHASH_Length’
#argument 1 of ‘__builtin_strcpy’ must be non-null
#   35|           return NULL;
#   36|       resolved = PR_Malloc(strlen(tmp) + 1);
#   37|->     strcpy(resolved, tmp); /* This is necessary because PR_Free might not be using free() */
#   38|       free(tmp);
#   39|       return resolved;

Error: CPPCHECK_WARNING (CWE-758): [#def193]
nss-3.110/nss/lib/freebl/hmacct.c:24: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#   22|   constantTimeGE(unsigned int a, unsigned int b)
#   23|   {
#   24|->     return PORT_CT_GE(a, b);
#   25|   }
#   26|   

Error: CPPCHECK_WARNING (CWE-758): [#def194]
nss-3.110/nss/lib/freebl/hmacct.c:31: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#   29|   constantTimeEQ(unsigned char a, unsigned char b)
#   30|   {
#   31|->     return PORT_CT_EQ(a, b);
#   32|   }
#   33|   

Error: COMPILER_WARNING: [#def195]
nss-3.110/nss/lib/freebl/intel-gcm-wrap.c:179:5: note[note]: called from here
#  177|   
#  178|       /* Promote the counter by 1 */
#  179|->     _mm_storeu_si128((__m128i *)gcm->CTR, _mm_shuffle_epi8(_mm_add_epi32(ONE, _mm_shuffle_epi8(_mm_loadu_si128((__m128i *)gcm->CTR), BSWAP_MASK)), BSWAP_MASK));
#  180|   
#  181|       /* Now hash AAD - it would actually make sense to seperate the context

Error: GCC_ANALYZER_WARNING (CWE-457): [#def196]
nss-3.110/nss/lib/freebl/kyber-pqcrystals-ref.c:444:20: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘<unknown>[1]’
nss-3.110/nss/lib/freebl/kyber-pqcrystals-ref.c:2561:1: enter_function: entry to ‘pqcrystals_kyber768_ref_keypair’
nss-3.110/nss/lib/freebl/kyber-pqcrystals-ref.c:2567:5: call_function: calling ‘pqcrystals_kyber768_ref_keypair_derand’ from ‘pqcrystals_kyber768_ref_keypair’
#  442|       uint32_t r;
#  443|       r = (uint32_t)x[0];
#  444|->     r |= (uint32_t)x[1] << 8;
#  445|       r |= (uint32_t)x[2] << 16;
#  446|       r |= (uint32_t)x[3] << 24;

Error: CPPCHECK_WARNING (CWE-758): [#def197]
nss-3.110/nss/lib/freebl/mpi/mpi.c:1984: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 1982|           /* Step 1: conditional swap. */
# 1983|           /* Set cond if delta > 0 and g is odd. */
# 1984|->         cond = (-delta >> (8 * sizeof(delta) - 1)) & DIGIT(&g, 0) & 1;
# 1985|           /* If cond is set replace (delta,f) with (-delta,-f). */
# 1986|           delta = (-cond & -delta) | ((cond - 1) & delta);

Error: CPPCHECK_WARNING (CWE-758): [#def198]
nss-3.110/nss/lib/freebl/mpi/mpi.c:2425: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 2423|           /* Step 1: conditional swap. */
# 2424|           /* Set cond if delta > 0 and g is odd. */
# 2425|->         cond = (-delta >> (8 * sizeof(delta) - 1)) & DIGIT(&g, 0) & 1;
# 2426|           /* If cond is set replace (delta,f,v) with (-delta,-f,-v). */
# 2427|           delta = (-cond & -delta) | ((cond - 1) & delta);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def199]
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:798:18: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1031:1: enter_function: entry to ‘mp_exptmod’
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1045:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1048:9: branch_false: ...to here
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1048:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1050:5: branch_false: ...to here
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1053:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1056:9: branch_false: ...to here
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1056:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1058:9: branch_false: ...to here
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1058:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1061:12: branch_false: ...to here
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1062:5: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1064:5: branch_false: ...to here
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1071:5: call_function: calling ‘mp_to_mont’ from ‘mp_exptmod’
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1071:5: return_function: returning to ‘mp_exptmod’ from ‘mp_to_mont’
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1071:5: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1073:24: branch_false: ...to here
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1144:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1146:64: branch_true: ...to here
nss-3.110/nss/lib/freebl/mpi/mpmontg.c:1145:15: call_function: calling ‘mp_exptmod_safe_i’ from ‘mp_exptmod’
#  796|           d = 0;
#  797|           for (j = 0; j < nBignums; ++j) {
#  798|->             d |= weaved[i * nBignums + j] & CONST_TIME_EQ(j, index);
#  799|           }
#  800|           pDest[i] = d;

Error: GCC_ANALYZER_WARNING (CWE-126): [#def200]
nss-3.110/nss/lib/freebl/rsapkcs.c:1045:9: warning[-Wanalyzer-out-of-bounds]: stack-based buffer over-read
nss-3.110/nss/lib/freebl/rsapkcs.c:1071:1: enter_function: entry to ‘rsa_GetErrorLength’
nss-3.110/nss/lib/freebl/rsapkcs.c:1080:10: call_function: calling ‘rsa_HMACPrf’ from ‘rsa_GetErrorLength’
# 1043|               return rv;
# 1044|           }
# 1045|->         PORT_Memcpy(output, hmacLast, left);
# 1046|           PORT_SafeZero(hmacLast, sizeof(hmacLast));
# 1047|       }

Error: CPPCHECK_WARNING (CWE-758): [#def201]
nss-3.110/nss/lib/freebl/rsapkcs.c:1088: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 1086|           int candidate = outp[0] << 8 | outp[1];
# 1087|           candidate = candidate & lengthMask;
# 1088|->         outLength = PORT_CT_SEL(PORT_CT_LT(candidate, maxLegalLen),
# 1089|                                   candidate, outLength);
# 1090|       }

Error: CPPCHECK_WARNING (CWE-758): [#def202]
nss-3.110/nss/lib/freebl/rsapkcs.c:1177: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 1175|       rv = RSA_PrivateKeyOp(key, buffer, input);
# 1176|   
# 1177|->     fail = PORT_CT_NE(rv, SECSuccess);
# 1178|       fail |= PORT_CT_NE(buffer[0], RSA_BLOCK_FIRST_OCTET) | PORT_CT_NE(buffer[1], RSA_BlockPublic);
# 1179|   

Error: CPPCHECK_WARNING (CWE-758): [#def203]
nss-3.110/nss/lib/freebl/rsapkcs.c:1178: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 1176|   
# 1177|       fail = PORT_CT_NE(rv, SECSuccess);
# 1178|->     fail |= PORT_CT_NE(buffer[0], RSA_BLOCK_FIRST_OCTET) | PORT_CT_NE(buffer[1], RSA_BlockPublic);
# 1179|   
# 1180|       /* There have to be at least 8 bytes of padding. */

Error: CPPCHECK_WARNING (CWE-758): [#def204]
nss-3.110/nss/lib/freebl/rsapkcs.c:1182: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 1180|       /* There have to be at least 8 bytes of padding. */
# 1181|       for (i = 2; i < 10; i++) {
# 1182|->         fail |= PORT_CT_EQ(buffer[i], RSA_BLOCK_AFTER_PAD_OCTET);
# 1183|       }
# 1184|   

Error: CPPCHECK_WARNING (CWE-758): [#def205]
nss-3.110/nss/lib/freebl/rsapkcs.c:1187: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 1185|       for (i = 10; i < modulusLen; i++) {
# 1186|           unsigned int newLen = modulusLen - i - 1;
# 1187|->         PRUint32 condition = PORT_CT_EQ(buffer[i], RSA_BLOCK_AFTER_PAD_OCTET) & PORT_CT_EQ(outLen, modulusLen);
# 1188|           outLen = PORT_CT_SEL(condition, newLen, outLen);
# 1189|       }

Error: CPPCHECK_WARNING (CWE-758): [#def206]
nss-3.110/nss/lib/freebl/rsapkcs.c:1191: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 1189|       }
# 1190|       // this can only happen if a zero wasn't found above
# 1191|->     fail |= PORT_CT_GE(outLen, modulusLen);
# 1192|   
# 1193|       outLen = PORT_CT_SEL(fail, errorLength, outLen);

Error: COMPILER_WARNING: [#def207]
nss-3.110/nss/lib/freebl/sha256-x86.c:87:10: note[note]: called from here
#   85|       th = _mm_shuffle_epi32(h0, 0xb1);
#   86|       h1 = _mm_shuffle_epi32(h1, 0x1b);
#   87|->     h0 = _mm_alignr_epi8(th, h1, 8);
#   88|       h1 = _mm_blend_epi16(h1, th, 0xf0);
#   89|   

Error: COMPILER_WARNING: [#def208]
nss-3.110/nss/lib/freebl/sha256-x86.c:88:10: note[note]: called from here
#   86|       h1 = _mm_shuffle_epi32(h1, 0x1b);
#   87|       h0 = _mm_alignr_epi8(th, h1, 8);
#   88|->     h1 = _mm_blend_epi16(h1, th, 0xf0);
#   89|   
#   90|       a = _mm_shuffle_epi8(_mm_loadu_si128(input), shuffle);

Error: COMPILER_WARNING: [#def209]
nss-3.110/nss/lib/freebl/sha256-x86.c:90:9: note[note]: called from here
#   88|       h1 = _mm_blend_epi16(h1, th, 0xf0);
#   89|   
#   90|->     a = _mm_shuffle_epi8(_mm_loadu_si128(input), shuffle);
#   91|       b = _mm_shuffle_epi8(_mm_loadu_si128(input + 1), shuffle);
#   92|       c = _mm_shuffle_epi8(_mm_loadu_si128(input + 2), shuffle);

Error: COMPILER_WARNING: [#def210]
nss-3.110/nss/lib/freebl/sha256-x86.c:91:9: note[note]: called from here
#   89|   
#   90|       a = _mm_shuffle_epi8(_mm_loadu_si128(input), shuffle);
#   91|->     b = _mm_shuffle_epi8(_mm_loadu_si128(input + 1), shuffle);
#   92|       c = _mm_shuffle_epi8(_mm_loadu_si128(input + 2), shuffle);
#   93|       d = _mm_shuffle_epi8(_mm_loadu_si128(input + 3), shuffle);

Error: COMPILER_WARNING: [#def211]
nss-3.110/nss/lib/freebl/sha256-x86.c:92:9: note[note]: called from here
#   90|       a = _mm_shuffle_epi8(_mm_loadu_si128(input), shuffle);
#   91|       b = _mm_shuffle_epi8(_mm_loadu_si128(input + 1), shuffle);
#   92|->     c = _mm_shuffle_epi8(_mm_loadu_si128(input + 2), shuffle);
#   93|       d = _mm_shuffle_epi8(_mm_loadu_si128(input + 3), shuffle);
#   94|   

Error: COMPILER_WARNING: [#def212]
nss-3.110/nss/lib/freebl/sha256-x86.c:93:9: note[note]: called from here
#   91|       b = _mm_shuffle_epi8(_mm_loadu_si128(input + 1), shuffle);
#   92|       c = _mm_shuffle_epi8(_mm_loadu_si128(input + 2), shuffle);
#   93|->     d = _mm_shuffle_epi8(_mm_loadu_si128(input + 3), shuffle);
#   94|   
#   95|       w0 = h0;

Error: COMPILER_WARNING: [#def213]
nss-3.110/nss/lib/freebl/sha256-x86.c:98:5: note[note]: called from here
#   96|       w1 = h1;
#   97|   
#   98|->     ROUND(0, a, b, c, d)
#   99|       ROUND(1, b, c, d, a)
#  100|       ROUND(2, c, d, a, b)

Error: COMPILER_WARNING: [#def214]
nss-3.110/nss/lib/freebl/sha256-x86.c:99:5: note[note]: called from here
#   97|   
#   98|       ROUND(0, a, b, c, d)
#   99|->     ROUND(1, b, c, d, a)
#  100|       ROUND(2, c, d, a, b)
#  101|       ROUND(3, d, a, b, c)

Error: COMPILER_WARNING: [#def215]
nss-3.110/nss/lib/freebl/sha256-x86.c:100:5: note[note]: called from here
#   98|       ROUND(0, a, b, c, d)
#   99|       ROUND(1, b, c, d, a)
#  100|->     ROUND(2, c, d, a, b)
#  101|       ROUND(3, d, a, b, c)
#  102|       ROUND(4, a, b, c, d)

Error: COMPILER_WARNING: [#def216]
nss-3.110/nss/lib/freebl/sha256-x86.c:101:5: note[note]: called from here
#   99|       ROUND(1, b, c, d, a)
#  100|       ROUND(2, c, d, a, b)
#  101|->     ROUND(3, d, a, b, c)
#  102|       ROUND(4, a, b, c, d)
#  103|       ROUND(5, b, c, d, a)

Error: COMPILER_WARNING: [#def217]
nss-3.110/nss/lib/freebl/sha256-x86.c:102:5: note[note]: called from here
#  100|       ROUND(2, c, d, a, b)
#  101|       ROUND(3, d, a, b, c)
#  102|->     ROUND(4, a, b, c, d)
#  103|       ROUND(5, b, c, d, a)
#  104|       ROUND(6, c, d, a, b)

Error: COMPILER_WARNING: [#def218]
nss-3.110/nss/lib/freebl/sha256-x86.c:103:5: note[note]: called from here
#  101|       ROUND(3, d, a, b, c)
#  102|       ROUND(4, a, b, c, d)
#  103|->     ROUND(5, b, c, d, a)
#  104|       ROUND(6, c, d, a, b)
#  105|       ROUND(7, d, a, b, c)

Error: COMPILER_WARNING: [#def219]
nss-3.110/nss/lib/freebl/sha256-x86.c:104:5: note[note]: called from here
#  102|       ROUND(4, a, b, c, d)
#  103|       ROUND(5, b, c, d, a)
#  104|->     ROUND(6, c, d, a, b)
#  105|       ROUND(7, d, a, b, c)
#  106|       ROUND(8, a, b, c, d)

Error: COMPILER_WARNING: [#def220]
nss-3.110/nss/lib/freebl/sha256-x86.c:105:5: note[note]: called from here
#  103|       ROUND(5, b, c, d, a)
#  104|       ROUND(6, c, d, a, b)
#  105|->     ROUND(7, d, a, b, c)
#  106|       ROUND(8, a, b, c, d)
#  107|       ROUND(9, b, c, d, a)

Error: COMPILER_WARNING: [#def221]
nss-3.110/nss/lib/freebl/sha256-x86.c:106:5: note[note]: called from here
#  104|       ROUND(6, c, d, a, b)
#  105|       ROUND(7, d, a, b, c)
#  106|->     ROUND(8, a, b, c, d)
#  107|       ROUND(9, b, c, d, a)
#  108|       ROUND(10, c, d, a, b)

Error: COMPILER_WARNING: [#def222]
nss-3.110/nss/lib/freebl/sha256-x86.c:107:5: note[note]: called from here
#  105|       ROUND(7, d, a, b, c)
#  106|       ROUND(8, a, b, c, d)
#  107|->     ROUND(9, b, c, d, a)
#  108|       ROUND(10, c, d, a, b)
#  109|       ROUND(11, d, a, b, c)

Error: COMPILER_WARNING: [#def223]
nss-3.110/nss/lib/freebl/sha256-x86.c:108:5: note[note]: called from here
#  106|       ROUND(8, a, b, c, d)
#  107|       ROUND(9, b, c, d, a)
#  108|->     ROUND(10, c, d, a, b)
#  109|       ROUND(11, d, a, b, c)
#  110|       ROUND(12, a, b, c, d)

Error: COMPILER_WARNING: [#def224]
nss-3.110/nss/lib/freebl/sha256-x86.c:109:5: note[note]: called from here
#  107|       ROUND(9, b, c, d, a)
#  108|       ROUND(10, c, d, a, b)
#  109|->     ROUND(11, d, a, b, c)
#  110|       ROUND(12, a, b, c, d)
#  111|       ROUND(13, b, c, d, a)

Error: COMPILER_WARNING: [#def225]
nss-3.110/nss/lib/freebl/sha256-x86.c:110:5: note[note]: called from here
#  108|       ROUND(10, c, d, a, b)
#  109|       ROUND(11, d, a, b, c)
#  110|->     ROUND(12, a, b, c, d)
#  111|       ROUND(13, b, c, d, a)
#  112|       ROUND(14, c, d, a, b)

Error: COMPILER_WARNING: [#def226]
nss-3.110/nss/lib/freebl/sha256-x86.c:111:5: note[note]: called from here
#  109|       ROUND(11, d, a, b, c)
#  110|       ROUND(12, a, b, c, d)
#  111|->     ROUND(13, b, c, d, a)
#  112|       ROUND(14, c, d, a, b)
#  113|       ROUND(15, d, a, b, c)

Error: COMPILER_WARNING: [#def227]
nss-3.110/nss/lib/freebl/sha256-x86.c:112:5: note[note]: called from here
#  110|       ROUND(12, a, b, c, d)
#  111|       ROUND(13, b, c, d, a)
#  112|->     ROUND(14, c, d, a, b)
#  113|       ROUND(15, d, a, b, c)
#  114|   

Error: COMPILER_WARNING: [#def228]
nss-3.110/nss/lib/freebl/sha256-x86.c:113:5: note[note]: called from here
#  111|       ROUND(13, b, c, d, a)
#  112|       ROUND(14, c, d, a, b)
#  113|->     ROUND(15, d, a, b, c)
#  114|   
#  115|       h0 = _mm_add_epi32(h0, w0);

Error: COMPILER_WARNING: [#def229]
nss-3.110/nss/lib/freebl/sha256-x86.c:121:10: note[note]: called from here
#  119|       th = _mm_shuffle_epi32(h0, 0x1b);
#  120|       h1 = _mm_shuffle_epi32(h1, 0xb1);
#  121|->     h0 = _mm_blend_epi16(th, h1, 0xf0);
#  122|       h1 = _mm_alignr_epi8(h1, th, 8);
#  123|   

Error: COMPILER_WARNING: [#def230]
nss-3.110/nss/lib/freebl/sha256-x86.c:122:10: note[note]: called from here
#  120|       h1 = _mm_shuffle_epi32(h1, 0xb1);
#  121|       h0 = _mm_blend_epi16(th, h1, 0xf0);
#  122|->     h1 = _mm_alignr_epi8(h1, th, 8);
#  123|   
#  124|       _mm_storeu_si128((__m128i *)ctx->h, h0);

Error: GCC_ANALYZER_WARNING (CWE-401): [#def231]
nss-3.110/nss/lib/freebl/stubs.c:267:5: warning[-Wanalyzer-malloc-leak]: leak of ‘mem’
nss-3.110/nss/lib/freebl/stubs.c:265:1: enter_function: entry to ‘PORT_ZAllocAlignedOffset_stub’
nss-3.110/nss/lib/freebl/stubs.c:267:5: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/freebl/stubs.c:268:8: branch_false: ...to here
nss-3.110/nss/lib/freebl/stubs.c:268:8: branch_false: following ‘false’ branch (when ‘offset <= size’)...
nss-3.110/nss/lib/freebl/stubs.c:272:11: branch_false: ...to here
nss-3.110/nss/lib/freebl/stubs.c:273:15: call_function: calling ‘PORT_ZAllocAligned_stub’ from ‘PORT_ZAllocAlignedOffset_stub’
nss-3.110/nss/lib/freebl/stubs.c:273:15: return_function: returning to ‘PORT_ZAllocAlignedOffset_stub’ from ‘PORT_ZAllocAligned_stub’
nss-3.110/nss/lib/freebl/stubs.c:274:8: branch_true: following ‘true’ branch...
 branch_true: ...to here
nss-3.110/nss/lib/freebl/stubs.c:267:5: danger: ‘mem’ leaks here; was allocated at [(16)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/15)
#  265|   PORT_ZAllocAlignedOffset_stub(size_t size, size_t alignment, size_t offset)
#  266|   {
#  267|->     STUB_SAFE_CALL3(PORT_ZAllocAlignedOffset_Util, size, alignment, offset);
#  268|       if (offset > size) {
#  269|           return NULL;

Error: COMPILER_WARNING: [#def232]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:54:50: note[note]: called from here
#   52|               KRML_PRE_ALIGN(32)
#   53|               Lib_IntVector_Intrinsics_vec256 e[5U] KRML_POST_ALIGN(32) = { 0U };
#   54|->             Lib_IntVector_Intrinsics_vec256 lo = Lib_IntVector_Intrinsics_vec256_load64_le(block);
#   55|               Lib_IntVector_Intrinsics_vec256
#   56|                   hi = Lib_IntVector_Intrinsics_vec256_load64_le(block + (uint32_t)32U);

Error: COMPILER_WARNING: [#def233]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:56:22: note[note]: called from here
#   54|               Lib_IntVector_Intrinsics_vec256 lo = Lib_IntVector_Intrinsics_vec256_load64_le(block);
#   55|               Lib_IntVector_Intrinsics_vec256
#   56|->                 hi = Lib_IntVector_Intrinsics_vec256_load64_le(block + (uint32_t)32U);
#   57|               Lib_IntVector_Intrinsics_vec256
#   58|                   mask260 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);

Error: COMPILER_WARNING: [#def234]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:58:27: note[note]: called from here
#   56|                   hi = Lib_IntVector_Intrinsics_vec256_load64_le(block + (uint32_t)32U);
#   57|               Lib_IntVector_Intrinsics_vec256
#   58|->                 mask260 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#   59|               Lib_IntVector_Intrinsics_vec256
#   60|                   m0 = Lib_IntVector_Intrinsics_vec256_interleave_low128(lo, hi);

Error: COMPILER_WARNING: [#def235]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:60:22: note[note]: called from here
#   58|                   mask260 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#   59|               Lib_IntVector_Intrinsics_vec256
#   60|->                 m0 = Lib_IntVector_Intrinsics_vec256_interleave_low128(lo, hi);
#   61|               Lib_IntVector_Intrinsics_vec256
#   62|                   m1 = Lib_IntVector_Intrinsics_vec256_interleave_high128(lo, hi);

Error: COMPILER_WARNING: [#def236]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:62:22: note[note]: called from here
#   60|                   m0 = Lib_IntVector_Intrinsics_vec256_interleave_low128(lo, hi);
#   61|               Lib_IntVector_Intrinsics_vec256
#   62|->                 m1 = Lib_IntVector_Intrinsics_vec256_interleave_high128(lo, hi);
#   63|               Lib_IntVector_Intrinsics_vec256
#   64|                   m2 = Lib_IntVector_Intrinsics_vec256_shift_right(m0, (uint32_t)48U);

Error: COMPILER_WARNING: [#def237]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:64:22: note[note]: called from here
#   62|                   m1 = Lib_IntVector_Intrinsics_vec256_interleave_high128(lo, hi);
#   63|               Lib_IntVector_Intrinsics_vec256
#   64|->                 m2 = Lib_IntVector_Intrinsics_vec256_shift_right(m0, (uint32_t)48U);
#   65|               Lib_IntVector_Intrinsics_vec256
#   66|                   m3 = Lib_IntVector_Intrinsics_vec256_shift_right(m1, (uint32_t)48U);

Error: COMPILER_WARNING: [#def238]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:66:22: note[note]: called from here
#   64|                   m2 = Lib_IntVector_Intrinsics_vec256_shift_right(m0, (uint32_t)48U);
#   65|               Lib_IntVector_Intrinsics_vec256
#   66|->                 m3 = Lib_IntVector_Intrinsics_vec256_shift_right(m1, (uint32_t)48U);
#   67|               Lib_IntVector_Intrinsics_vec256
#   68|                   m4 = Lib_IntVector_Intrinsics_vec256_interleave_high64(m0, m1);

Error: COMPILER_WARNING: [#def239]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:68:22: note[note]: called from here
#   66|                   m3 = Lib_IntVector_Intrinsics_vec256_shift_right(m1, (uint32_t)48U);
#   67|               Lib_IntVector_Intrinsics_vec256
#   68|->                 m4 = Lib_IntVector_Intrinsics_vec256_interleave_high64(m0, m1);
#   69|               Lib_IntVector_Intrinsics_vec256
#   70|                   t010 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m0, m1);

Error: COMPILER_WARNING: [#def240]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:70:24: note[note]: called from here
#   68|                   m4 = Lib_IntVector_Intrinsics_vec256_interleave_high64(m0, m1);
#   69|               Lib_IntVector_Intrinsics_vec256
#   70|->                 t010 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m0, m1);
#   71|               Lib_IntVector_Intrinsics_vec256
#   72|                   t30 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m2, m3);

Error: COMPILER_WARNING: [#def241]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:72:23: note[note]: called from here
#   70|                   t010 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m0, m1);
#   71|               Lib_IntVector_Intrinsics_vec256
#   72|->                 t30 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m2, m3);
#   73|               Lib_IntVector_Intrinsics_vec256
#   74|                   t20 = Lib_IntVector_Intrinsics_vec256_shift_right64(t30, (uint32_t)4U);

Error: COMPILER_WARNING: [#def242]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:74:23: note[note]: called from here
#   72|                   t30 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m2, m3);
#   73|               Lib_IntVector_Intrinsics_vec256
#   74|->                 t20 = Lib_IntVector_Intrinsics_vec256_shift_right64(t30, (uint32_t)4U);
#   75|               Lib_IntVector_Intrinsics_vec256 o20 = Lib_IntVector_Intrinsics_vec256_and(t20, mask260);
#   76|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def243]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:75:51: note[note]: called from here
#   73|               Lib_IntVector_Intrinsics_vec256
#   74|                   t20 = Lib_IntVector_Intrinsics_vec256_shift_right64(t30, (uint32_t)4U);
#   75|->             Lib_IntVector_Intrinsics_vec256 o20 = Lib_IntVector_Intrinsics_vec256_and(t20, mask260);
#   76|               Lib_IntVector_Intrinsics_vec256
#   77|                   t10 = Lib_IntVector_Intrinsics_vec256_shift_right64(t010, (uint32_t)26U);

Error: COMPILER_WARNING: [#def244]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:77:23: note[note]: called from here
#   75|               Lib_IntVector_Intrinsics_vec256 o20 = Lib_IntVector_Intrinsics_vec256_and(t20, mask260);
#   76|               Lib_IntVector_Intrinsics_vec256
#   77|->                 t10 = Lib_IntVector_Intrinsics_vec256_shift_right64(t010, (uint32_t)26U);
#   78|               Lib_IntVector_Intrinsics_vec256 o10 = Lib_IntVector_Intrinsics_vec256_and(t10, mask260);
#   79|               Lib_IntVector_Intrinsics_vec256 o5 = Lib_IntVector_Intrinsics_vec256_and(t010, mask260);

Error: COMPILER_WARNING: [#def245]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:78:51: note[note]: called from here
#   76|               Lib_IntVector_Intrinsics_vec256
#   77|                   t10 = Lib_IntVector_Intrinsics_vec256_shift_right64(t010, (uint32_t)26U);
#   78|->             Lib_IntVector_Intrinsics_vec256 o10 = Lib_IntVector_Intrinsics_vec256_and(t10, mask260);
#   79|               Lib_IntVector_Intrinsics_vec256 o5 = Lib_IntVector_Intrinsics_vec256_and(t010, mask260);
#   80|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def246]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:79:50: note[note]: called from here
#   77|                   t10 = Lib_IntVector_Intrinsics_vec256_shift_right64(t010, (uint32_t)26U);
#   78|               Lib_IntVector_Intrinsics_vec256 o10 = Lib_IntVector_Intrinsics_vec256_and(t10, mask260);
#   79|->             Lib_IntVector_Intrinsics_vec256 o5 = Lib_IntVector_Intrinsics_vec256_and(t010, mask260);
#   80|               Lib_IntVector_Intrinsics_vec256
#   81|                   t31 = Lib_IntVector_Intrinsics_vec256_shift_right64(t30, (uint32_t)30U);

Error: COMPILER_WARNING: [#def247]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:81:23: note[note]: called from here
#   79|               Lib_IntVector_Intrinsics_vec256 o5 = Lib_IntVector_Intrinsics_vec256_and(t010, mask260);
#   80|               Lib_IntVector_Intrinsics_vec256
#   81|->                 t31 = Lib_IntVector_Intrinsics_vec256_shift_right64(t30, (uint32_t)30U);
#   82|               Lib_IntVector_Intrinsics_vec256 o30 = Lib_IntVector_Intrinsics_vec256_and(t31, mask260);
#   83|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def248]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:82:51: note[note]: called from here
#   80|               Lib_IntVector_Intrinsics_vec256
#   81|                   t31 = Lib_IntVector_Intrinsics_vec256_shift_right64(t30, (uint32_t)30U);
#   82|->             Lib_IntVector_Intrinsics_vec256 o30 = Lib_IntVector_Intrinsics_vec256_and(t31, mask260);
#   83|               Lib_IntVector_Intrinsics_vec256
#   84|                   o40 = Lib_IntVector_Intrinsics_vec256_shift_right64(m4, (uint32_t)40U);

Error: COMPILER_WARNING: [#def249]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:84:23: note[note]: called from here
#   82|               Lib_IntVector_Intrinsics_vec256 o30 = Lib_IntVector_Intrinsics_vec256_and(t31, mask260);
#   83|               Lib_IntVector_Intrinsics_vec256
#   84|->                 o40 = Lib_IntVector_Intrinsics_vec256_shift_right64(m4, (uint32_t)40U);
#   85|               Lib_IntVector_Intrinsics_vec256 o00 = o5;
#   86|               Lib_IntVector_Intrinsics_vec256 o11 = o10;

Error: COMPILER_WARNING: [#def250]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:96:52: note[note]: called from here
#   94|               e[4U] = o41;
#   95|               uint64_t b = (uint64_t)0x1000000U;
#   96|->             Lib_IntVector_Intrinsics_vec256 mask = Lib_IntVector_Intrinsics_vec256_load64(b);
#   97|               Lib_IntVector_Intrinsics_vec256 f4 = e[4U];
#   98|               e[4U] = Lib_IntVector_Intrinsics_vec256_or(f4, mask);

Error: COMPILER_WARNING: [#def251]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:98:21: note[note]: called from here
#   96|               Lib_IntVector_Intrinsics_vec256 mask = Lib_IntVector_Intrinsics_vec256_load64(b);
#   97|               Lib_IntVector_Intrinsics_vec256 f4 = e[4U];
#   98|->             e[4U] = Lib_IntVector_Intrinsics_vec256_or(f4, mask);
#   99|               Lib_IntVector_Intrinsics_vec256 *rn = pre0 + (uint32_t)10U;
#  100|               Lib_IntVector_Intrinsics_vec256 *rn5 = pre0 + (uint32_t)15U;

Error: COMPILER_WARNING: [#def252]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:115:50: note[note]: called from here
#  113|               Lib_IntVector_Intrinsics_vec256 f130 = acc0[3U];
#  114|               Lib_IntVector_Intrinsics_vec256 f140 = acc0[4U];
#  115|->             Lib_IntVector_Intrinsics_vec256 a0 = Lib_IntVector_Intrinsics_vec256_mul64(r0, f10);
#  116|               Lib_IntVector_Intrinsics_vec256 a1 = Lib_IntVector_Intrinsics_vec256_mul64(r1, f10);
#  117|               Lib_IntVector_Intrinsics_vec256 a2 = Lib_IntVector_Intrinsics_vec256_mul64(r2, f10);

Error: COMPILER_WARNING: [#def253]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:116:50: note[note]: called from here
#  114|               Lib_IntVector_Intrinsics_vec256 f140 = acc0[4U];
#  115|               Lib_IntVector_Intrinsics_vec256 a0 = Lib_IntVector_Intrinsics_vec256_mul64(r0, f10);
#  116|->             Lib_IntVector_Intrinsics_vec256 a1 = Lib_IntVector_Intrinsics_vec256_mul64(r1, f10);
#  117|               Lib_IntVector_Intrinsics_vec256 a2 = Lib_IntVector_Intrinsics_vec256_mul64(r2, f10);
#  118|               Lib_IntVector_Intrinsics_vec256 a3 = Lib_IntVector_Intrinsics_vec256_mul64(r3, f10);

Error: COMPILER_WARNING: [#def254]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:117:50: note[note]: called from here
#  115|               Lib_IntVector_Intrinsics_vec256 a0 = Lib_IntVector_Intrinsics_vec256_mul64(r0, f10);
#  116|               Lib_IntVector_Intrinsics_vec256 a1 = Lib_IntVector_Intrinsics_vec256_mul64(r1, f10);
#  117|->             Lib_IntVector_Intrinsics_vec256 a2 = Lib_IntVector_Intrinsics_vec256_mul64(r2, f10);
#  118|               Lib_IntVector_Intrinsics_vec256 a3 = Lib_IntVector_Intrinsics_vec256_mul64(r3, f10);
#  119|               Lib_IntVector_Intrinsics_vec256 a4 = Lib_IntVector_Intrinsics_vec256_mul64(r4, f10);

Error: COMPILER_WARNING: [#def255]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:118:50: note[note]: called from here
#  116|               Lib_IntVector_Intrinsics_vec256 a1 = Lib_IntVector_Intrinsics_vec256_mul64(r1, f10);
#  117|               Lib_IntVector_Intrinsics_vec256 a2 = Lib_IntVector_Intrinsics_vec256_mul64(r2, f10);
#  118|->             Lib_IntVector_Intrinsics_vec256 a3 = Lib_IntVector_Intrinsics_vec256_mul64(r3, f10);
#  119|               Lib_IntVector_Intrinsics_vec256 a4 = Lib_IntVector_Intrinsics_vec256_mul64(r4, f10);
#  120|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def256]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:119:50: note[note]: called from here
#  117|               Lib_IntVector_Intrinsics_vec256 a2 = Lib_IntVector_Intrinsics_vec256_mul64(r2, f10);
#  118|               Lib_IntVector_Intrinsics_vec256 a3 = Lib_IntVector_Intrinsics_vec256_mul64(r3, f10);
#  119|->             Lib_IntVector_Intrinsics_vec256 a4 = Lib_IntVector_Intrinsics_vec256_mul64(r4, f10);
#  120|               Lib_IntVector_Intrinsics_vec256
#  121|                   a01 =

Error: COMPILER_WARNING: [#def257]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:122:21: note[note]: called from here
#  120|               Lib_IntVector_Intrinsics_vec256
#  121|                   a01 =
#  122|->                     Lib_IntVector_Intrinsics_vec256_add64(a0,
#  123|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r54, f110));
#  124|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def258]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:126:21: note[note]: called from here
#  124|               Lib_IntVector_Intrinsics_vec256
#  125|                   a11 =
#  126|->                     Lib_IntVector_Intrinsics_vec256_add64(a1,
#  127|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r0, f110));
#  128|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def259]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:130:21: note[note]: called from here
#  128|               Lib_IntVector_Intrinsics_vec256
#  129|                   a21 =
#  130|->                     Lib_IntVector_Intrinsics_vec256_add64(a2,
#  131|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r1, f110));
#  132|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def260]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:134:21: note[note]: called from here
#  132|               Lib_IntVector_Intrinsics_vec256
#  133|                   a31 =
#  134|->                     Lib_IntVector_Intrinsics_vec256_add64(a3,
#  135|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r2, f110));
#  136|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def261]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:138:21: note[note]: called from here
#  136|               Lib_IntVector_Intrinsics_vec256
#  137|                   a41 =
#  138|->                     Lib_IntVector_Intrinsics_vec256_add64(a4,
#  139|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r3, f110));
#  140|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def262]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:142:21: note[note]: called from here
#  140|               Lib_IntVector_Intrinsics_vec256
#  141|                   a02 =
#  142|->                     Lib_IntVector_Intrinsics_vec256_add64(a01,
#  143|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r53, f120));
#  144|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def263]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:146:21: note[note]: called from here
#  144|               Lib_IntVector_Intrinsics_vec256
#  145|                   a12 =
#  146|->                     Lib_IntVector_Intrinsics_vec256_add64(a11,
#  147|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r54, f120));
#  148|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def264]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:150:21: note[note]: called from here
#  148|               Lib_IntVector_Intrinsics_vec256
#  149|                   a22 =
#  150|->                     Lib_IntVector_Intrinsics_vec256_add64(a21,
#  151|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r0, f120));
#  152|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def265]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:154:21: note[note]: called from here
#  152|               Lib_IntVector_Intrinsics_vec256
#  153|                   a32 =
#  154|->                     Lib_IntVector_Intrinsics_vec256_add64(a31,
#  155|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r1, f120));
#  156|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def266]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:158:21: note[note]: called from here
#  156|               Lib_IntVector_Intrinsics_vec256
#  157|                   a42 =
#  158|->                     Lib_IntVector_Intrinsics_vec256_add64(a41,
#  159|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r2, f120));
#  160|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def267]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:162:21: note[note]: called from here
#  160|               Lib_IntVector_Intrinsics_vec256
#  161|                   a03 =
#  162|->                     Lib_IntVector_Intrinsics_vec256_add64(a02,
#  163|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r52, f130));
#  164|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def268]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:166:21: note[note]: called from here
#  164|               Lib_IntVector_Intrinsics_vec256
#  165|                   a13 =
#  166|->                     Lib_IntVector_Intrinsics_vec256_add64(a12,
#  167|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r53, f130));
#  168|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def269]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:170:21: note[note]: called from here
#  168|               Lib_IntVector_Intrinsics_vec256
#  169|                   a23 =
#  170|->                     Lib_IntVector_Intrinsics_vec256_add64(a22,
#  171|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r54, f130));
#  172|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def270]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:174:21: note[note]: called from here
#  172|               Lib_IntVector_Intrinsics_vec256
#  173|                   a33 =
#  174|->                     Lib_IntVector_Intrinsics_vec256_add64(a32,
#  175|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r0, f130));
#  176|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def271]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:178:21: note[note]: called from here
#  176|               Lib_IntVector_Intrinsics_vec256
#  177|                   a43 =
#  178|->                     Lib_IntVector_Intrinsics_vec256_add64(a42,
#  179|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r1, f130));
#  180|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def272]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:182:21: note[note]: called from here
#  180|               Lib_IntVector_Intrinsics_vec256
#  181|                   a04 =
#  182|->                     Lib_IntVector_Intrinsics_vec256_add64(a03,
#  183|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r51, f140));
#  184|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def273]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:186:21: note[note]: called from here
#  184|               Lib_IntVector_Intrinsics_vec256
#  185|                   a14 =
#  186|->                     Lib_IntVector_Intrinsics_vec256_add64(a13,
#  187|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r52, f140));
#  188|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def274]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:190:21: note[note]: called from here
#  188|               Lib_IntVector_Intrinsics_vec256
#  189|                   a24 =
#  190|->                     Lib_IntVector_Intrinsics_vec256_add64(a23,
#  191|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r53, f140));
#  192|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def275]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:194:21: note[note]: called from here
#  192|               Lib_IntVector_Intrinsics_vec256
#  193|                   a34 =
#  194|->                     Lib_IntVector_Intrinsics_vec256_add64(a33,
#  195|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r54, f140));
#  196|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def276]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:198:21: note[note]: called from here
#  196|               Lib_IntVector_Intrinsics_vec256
#  197|                   a44 =
#  198|->                     Lib_IntVector_Intrinsics_vec256_add64(a43,
#  199|                                                             Lib_IntVector_Intrinsics_vec256_mul64(r0, f140));
#  200|               Lib_IntVector_Intrinsics_vec256 t01 = a04;

Error: COMPILER_WARNING: [#def277]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:206:26: note[note]: called from here
#  204|               Lib_IntVector_Intrinsics_vec256 t4 = a44;
#  205|               Lib_IntVector_Intrinsics_vec256
#  206|->                 mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#  207|               Lib_IntVector_Intrinsics_vec256
#  208|                   z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t01, (uint32_t)26U);

Error: COMPILER_WARNING: [#def278]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:208:22: note[note]: called from here
#  206|                   mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#  207|               Lib_IntVector_Intrinsics_vec256
#  208|->                 z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t01, (uint32_t)26U);
#  209|               Lib_IntVector_Intrinsics_vec256
#  210|                   z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);

Error: COMPILER_WARNING: [#def279]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:210:22: note[note]: called from here
#  208|                   z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t01, (uint32_t)26U);
#  209|               Lib_IntVector_Intrinsics_vec256
#  210|->                 z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  211|               Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  212|               Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);

Error: COMPILER_WARNING: [#def280]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:211:50: note[note]: called from here
#  209|               Lib_IntVector_Intrinsics_vec256
#  210|                   z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  211|->             Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  212|               Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  213|               Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t1, z0);

Error: COMPILER_WARNING: [#def281]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:212:50: note[note]: called from here
#  210|                   z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  211|               Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  212|->             Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  213|               Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t1, z0);
#  214|               Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);

Error: COMPILER_WARNING: [#def282]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:213:50: note[note]: called from here
#  211|               Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  212|               Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  213|->             Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t1, z0);
#  214|               Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  215|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def283]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:214:50: note[note]: called from here
#  212|               Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  213|               Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t1, z0);
#  214|->             Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  215|               Lib_IntVector_Intrinsics_vec256
#  216|                   z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);

Error: COMPILER_WARNING: [#def284]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:216:23: note[note]: called from here
#  214|               Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  215|               Lib_IntVector_Intrinsics_vec256
#  216|->                 z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);
#  217|               Lib_IntVector_Intrinsics_vec256
#  218|                   z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);

Error: COMPILER_WARNING: [#def285]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:218:23: note[note]: called from here
#  216|                   z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);
#  217|               Lib_IntVector_Intrinsics_vec256
#  218|->                 z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);
#  219|               Lib_IntVector_Intrinsics_vec256
#  220|                   t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);

Error: COMPILER_WARNING: [#def286]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:220:21: note[note]: called from here
#  218|                   z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);
#  219|               Lib_IntVector_Intrinsics_vec256
#  220|->                 t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  221|               Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  222|               Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);

Error: COMPILER_WARNING: [#def287]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:221:51: note[note]: called from here
#  219|               Lib_IntVector_Intrinsics_vec256
#  220|                   t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  221|->             Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  222|               Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  223|               Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);

Error: COMPILER_WARNING: [#def288]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:222:51: note[note]: called from here
#  220|                   t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  221|               Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  222|->             Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  223|               Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  224|               Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);

Error: COMPILER_WARNING: [#def289]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:223:51: note[note]: called from here
#  221|               Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  222|               Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  223|->             Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  224|               Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  225|               Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);

Error: COMPILER_WARNING: [#def290]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:224:50: note[note]: called from here
#  222|               Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  223|               Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  224|->             Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  225|               Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  226|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def291]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:225:51: note[note]: called from here
#  223|               Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  224|               Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  225|->             Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  226|               Lib_IntVector_Intrinsics_vec256
#  227|                   z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);

Error: COMPILER_WARNING: [#def292]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:227:23: note[note]: called from here
#  225|               Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  226|               Lib_IntVector_Intrinsics_vec256
#  227|->                 z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);
#  228|               Lib_IntVector_Intrinsics_vec256
#  229|                   z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);

Error: COMPILER_WARNING: [#def293]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:229:23: note[note]: called from here
#  227|                   z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);
#  228|               Lib_IntVector_Intrinsics_vec256
#  229|->                 z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  230|               Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  231|               Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);

Error: COMPILER_WARNING: [#def294]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:230:51: note[note]: called from here
#  228|               Lib_IntVector_Intrinsics_vec256
#  229|                   z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  230|->             Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  231|               Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  232|               Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);

Error: COMPILER_WARNING: [#def295]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:231:51: note[note]: called from here
#  229|                   z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  230|               Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  231|->             Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  232|               Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  233|               Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);

Error: COMPILER_WARNING: [#def296]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:232:51: note[note]: called from here
#  230|               Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  231|               Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  232|->             Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  233|               Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  234|               Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def297]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:233:51: note[note]: called from here
#  231|               Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  232|               Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  233|->             Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  234|               Lib_IntVector_Intrinsics_vec256
#  235|                   z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);

Error: COMPILER_WARNING: [#def298]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:235:23: note[note]: called from here
#  233|               Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  234|               Lib_IntVector_Intrinsics_vec256
#  235|->                 z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  236|               Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  237|               Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);

Error: COMPILER_WARNING: [#def299]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:236:51: note[note]: called from here
#  234|               Lib_IntVector_Intrinsics_vec256
#  235|                   z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  236|->             Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  237|               Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);
#  238|               Lib_IntVector_Intrinsics_vec256 o01 = x02;

Error: COMPILER_WARNING: [#def300]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:237:51: note[note]: called from here
#  235|                   z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  236|               Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  237|->             Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);
#  238|               Lib_IntVector_Intrinsics_vec256 o01 = x02;
#  239|               Lib_IntVector_Intrinsics_vec256 o12 = x12;

Error: COMPILER_WARNING: [#def301]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:258:50: note[note]: called from here
#  256|               Lib_IntVector_Intrinsics_vec256 f23 = e[3U];
#  257|               Lib_IntVector_Intrinsics_vec256 f24 = e[4U];
#  258|->             Lib_IntVector_Intrinsics_vec256 o0 = Lib_IntVector_Intrinsics_vec256_add64(f100, f20);
#  259|               Lib_IntVector_Intrinsics_vec256 o1 = Lib_IntVector_Intrinsics_vec256_add64(f11, f21);
#  260|               Lib_IntVector_Intrinsics_vec256 o2 = Lib_IntVector_Intrinsics_vec256_add64(f12, f22);

Error: COMPILER_WARNING: [#def302]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:259:50: note[note]: called from here
#  257|               Lib_IntVector_Intrinsics_vec256 f24 = e[4U];
#  258|               Lib_IntVector_Intrinsics_vec256 o0 = Lib_IntVector_Intrinsics_vec256_add64(f100, f20);
#  259|->             Lib_IntVector_Intrinsics_vec256 o1 = Lib_IntVector_Intrinsics_vec256_add64(f11, f21);
#  260|               Lib_IntVector_Intrinsics_vec256 o2 = Lib_IntVector_Intrinsics_vec256_add64(f12, f22);
#  261|               Lib_IntVector_Intrinsics_vec256 o3 = Lib_IntVector_Intrinsics_vec256_add64(f13, f23);

Error: COMPILER_WARNING: [#def303]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:260:50: note[note]: called from here
#  258|               Lib_IntVector_Intrinsics_vec256 o0 = Lib_IntVector_Intrinsics_vec256_add64(f100, f20);
#  259|               Lib_IntVector_Intrinsics_vec256 o1 = Lib_IntVector_Intrinsics_vec256_add64(f11, f21);
#  260|->             Lib_IntVector_Intrinsics_vec256 o2 = Lib_IntVector_Intrinsics_vec256_add64(f12, f22);
#  261|               Lib_IntVector_Intrinsics_vec256 o3 = Lib_IntVector_Intrinsics_vec256_add64(f13, f23);
#  262|               Lib_IntVector_Intrinsics_vec256 o4 = Lib_IntVector_Intrinsics_vec256_add64(f14, f24);

Error: COMPILER_WARNING: [#def304]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:261:50: note[note]: called from here
#  259|               Lib_IntVector_Intrinsics_vec256 o1 = Lib_IntVector_Intrinsics_vec256_add64(f11, f21);
#  260|               Lib_IntVector_Intrinsics_vec256 o2 = Lib_IntVector_Intrinsics_vec256_add64(f12, f22);
#  261|->             Lib_IntVector_Intrinsics_vec256 o3 = Lib_IntVector_Intrinsics_vec256_add64(f13, f23);
#  262|               Lib_IntVector_Intrinsics_vec256 o4 = Lib_IntVector_Intrinsics_vec256_add64(f14, f24);
#  263|               acc0[0U] = o0;

Error: COMPILER_WARNING: [#def305]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:262:50: note[note]: called from here
#  260|               Lib_IntVector_Intrinsics_vec256 o2 = Lib_IntVector_Intrinsics_vec256_add64(f12, f22);
#  261|               Lib_IntVector_Intrinsics_vec256 o3 = Lib_IntVector_Intrinsics_vec256_add64(f13, f23);
#  262|->             Lib_IntVector_Intrinsics_vec256 o4 = Lib_IntVector_Intrinsics_vec256_add64(f14, f24);
#  263|               acc0[0U] = o0;
#  264|               acc0[1U] = o1;

Error: COMPILER_WARNING: [#def306]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:283:46: note[note]: called from here
#  281|           uint64_t u = load64_le(block + (uint32_t)8U);
#  282|           uint64_t hi = u;
#  283|->         Lib_IntVector_Intrinsics_vec256 f0 = Lib_IntVector_Intrinsics_vec256_load64(lo);
#  284|           Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_load64(hi);
#  285|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def307]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:284:46: note[note]: called from here
#  282|           uint64_t hi = u;
#  283|           Lib_IntVector_Intrinsics_vec256 f0 = Lib_IntVector_Intrinsics_vec256_load64(lo);
#  284|->         Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_load64(hi);
#  285|           Lib_IntVector_Intrinsics_vec256
#  286|               f010 =

Error: COMPILER_WARNING: [#def308]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:287:17: note[note]: called from here
#  285|           Lib_IntVector_Intrinsics_vec256
#  286|               f010 =
#  287|->                 Lib_IntVector_Intrinsics_vec256_and(f0,
#  288|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));
#  289|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def309]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:291:17: note[note]: called from here
#  289|           Lib_IntVector_Intrinsics_vec256
#  290|               f110 =
#  291|->                 Lib_IntVector_Intrinsics_vec256_and(Lib_IntVector_Intrinsics_vec256_shift_right64(f0,
#  292|                                                                                                     (uint32_t)26U),
#  293|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));

Error: COMPILER_WARNING: [#def310]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:296:17: note[note]: called from here
#  294|           Lib_IntVector_Intrinsics_vec256
#  295|               f20 =
#  296|->                 Lib_IntVector_Intrinsics_vec256_or(Lib_IntVector_Intrinsics_vec256_shift_right64(f0,
#  297|                                                                                                    (uint32_t)52U),
#  298|                                                      Lib_IntVector_Intrinsics_vec256_shift_left64(Lib_IntVector_Intrinsics_vec256_and(f1,

Error: COMPILER_WARNING: [#def311]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:303:17: note[note]: called from here
#  301|           Lib_IntVector_Intrinsics_vec256
#  302|               f30 =
#  303|->                 Lib_IntVector_Intrinsics_vec256_and(Lib_IntVector_Intrinsics_vec256_shift_right64(f1,
#  304|                                                                                                     (uint32_t)14U),
#  305|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));

Error: COMPILER_WARNING: [#def312]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:307:19: note[note]: called from here
#  305|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));
#  306|           Lib_IntVector_Intrinsics_vec256
#  307|->             f40 = Lib_IntVector_Intrinsics_vec256_shift_right64(f1, (uint32_t)40U);
#  308|           Lib_IntVector_Intrinsics_vec256 f01 = f010;
#  309|           Lib_IntVector_Intrinsics_vec256 f111 = f110;

Error: COMPILER_WARNING: [#def313]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:319:48: note[note]: called from here
#  317|           e[4U] = f41;
#  318|           uint64_t b = (uint64_t)0x1000000U;
#  319|->         Lib_IntVector_Intrinsics_vec256 mask = Lib_IntVector_Intrinsics_vec256_load64(b);
#  320|           Lib_IntVector_Intrinsics_vec256 f4 = e[4U];
#  321|           e[4U] = Lib_IntVector_Intrinsics_vec256_or(f4, mask);

Error: COMPILER_WARNING: [#def314]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:321:17: note[note]: called from here
#  319|           Lib_IntVector_Intrinsics_vec256 mask = Lib_IntVector_Intrinsics_vec256_load64(b);
#  320|           Lib_IntVector_Intrinsics_vec256 f4 = e[4U];
#  321|->         e[4U] = Lib_IntVector_Intrinsics_vec256_or(f4, mask);
#  322|           Lib_IntVector_Intrinsics_vec256 *r1 = pre0;
#  323|           Lib_IntVector_Intrinsics_vec256 *r5 = pre0 + (uint32_t)5U;

Error: COMPILER_WARNING: [#def315]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:343:47: note[note]: called from here
#  341|           Lib_IntVector_Intrinsics_vec256 a3 = acc0[3U];
#  342|           Lib_IntVector_Intrinsics_vec256 a4 = acc0[4U];
#  343|->         Lib_IntVector_Intrinsics_vec256 a01 = Lib_IntVector_Intrinsics_vec256_add64(a0, f10);
#  344|           Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  345|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);

Error: COMPILER_WARNING: [#def316]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:344:47: note[note]: called from here
#  342|           Lib_IntVector_Intrinsics_vec256 a4 = acc0[4U];
#  343|           Lib_IntVector_Intrinsics_vec256 a01 = Lib_IntVector_Intrinsics_vec256_add64(a0, f10);
#  344|->         Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  345|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  346|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);

Error: COMPILER_WARNING: [#def317]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:345:47: note[note]: called from here
#  343|           Lib_IntVector_Intrinsics_vec256 a01 = Lib_IntVector_Intrinsics_vec256_add64(a0, f10);
#  344|           Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  345|->         Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  346|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  347|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);

Error: COMPILER_WARNING: [#def318]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:346:47: note[note]: called from here
#  344|           Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  345|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  346|->         Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  347|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  348|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);

Error: COMPILER_WARNING: [#def319]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:347:47: note[note]: called from here
#  345|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  346|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  347|->         Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  348|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  349|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);

Error: COMPILER_WARNING: [#def320]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:348:47: note[note]: called from here
#  346|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  347|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  348|->         Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  349|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  350|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);

Error: COMPILER_WARNING: [#def321]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:349:47: note[note]: called from here
#  347|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  348|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  349|->         Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  350|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  351|           Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);

Error: COMPILER_WARNING: [#def322]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:350:47: note[note]: called from here
#  348|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  349|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  350|->         Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  351|           Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);
#  352|           Lib_IntVector_Intrinsics_vec256 a42 = Lib_IntVector_Intrinsics_vec256_mul64(r4, a01);

Error: COMPILER_WARNING: [#def323]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:351:47: note[note]: called from here
#  349|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  350|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  351|->         Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);
#  352|           Lib_IntVector_Intrinsics_vec256 a42 = Lib_IntVector_Intrinsics_vec256_mul64(r4, a01);
#  353|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def324]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:352:47: note[note]: called from here
#  350|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  351|           Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);
#  352|->         Lib_IntVector_Intrinsics_vec256 a42 = Lib_IntVector_Intrinsics_vec256_mul64(r4, a01);
#  353|           Lib_IntVector_Intrinsics_vec256
#  354|               a03 =

Error: COMPILER_WARNING: [#def325]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:355:17: note[note]: called from here
#  353|           Lib_IntVector_Intrinsics_vec256
#  354|               a03 =
#  355|->                 Lib_IntVector_Intrinsics_vec256_add64(a02,
#  356|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a11));
#  357|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def326]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:359:17: note[note]: called from here
#  357|           Lib_IntVector_Intrinsics_vec256
#  358|               a13 =
#  359|->                 Lib_IntVector_Intrinsics_vec256_add64(a12,
#  360|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a11));
#  361|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def327]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:363:17: note[note]: called from here
#  361|           Lib_IntVector_Intrinsics_vec256
#  362|               a23 =
#  363|->                 Lib_IntVector_Intrinsics_vec256_add64(a22,
#  364|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r11, a11));
#  365|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def328]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:367:17: note[note]: called from here
#  365|           Lib_IntVector_Intrinsics_vec256
#  366|               a33 =
#  367|->                 Lib_IntVector_Intrinsics_vec256_add64(a32,
#  368|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r2, a11));
#  369|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def329]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:371:17: note[note]: called from here
#  369|           Lib_IntVector_Intrinsics_vec256
#  370|               a43 =
#  371|->                 Lib_IntVector_Intrinsics_vec256_add64(a42,
#  372|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r3, a11));
#  373|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def330]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:375:17: note[note]: called from here
#  373|           Lib_IntVector_Intrinsics_vec256
#  374|               a04 =
#  375|->                 Lib_IntVector_Intrinsics_vec256_add64(a03,
#  376|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r53, a21));
#  377|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def331]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:379:17: note[note]: called from here
#  377|           Lib_IntVector_Intrinsics_vec256
#  378|               a14 =
#  379|->                 Lib_IntVector_Intrinsics_vec256_add64(a13,
#  380|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a21));
#  381|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def332]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:383:17: note[note]: called from here
#  381|           Lib_IntVector_Intrinsics_vec256
#  382|               a24 =
#  383|->                 Lib_IntVector_Intrinsics_vec256_add64(a23,
#  384|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a21));
#  385|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def333]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:387:17: note[note]: called from here
#  385|           Lib_IntVector_Intrinsics_vec256
#  386|               a34 =
#  387|->                 Lib_IntVector_Intrinsics_vec256_add64(a33,
#  388|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r11, a21));
#  389|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def334]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:391:17: note[note]: called from here
#  389|           Lib_IntVector_Intrinsics_vec256
#  390|               a44 =
#  391|->                 Lib_IntVector_Intrinsics_vec256_add64(a43,
#  392|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r2, a21));
#  393|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def335]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:395:17: note[note]: called from here
#  393|           Lib_IntVector_Intrinsics_vec256
#  394|               a05 =
#  395|->                 Lib_IntVector_Intrinsics_vec256_add64(a04,
#  396|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r52, a31));
#  397|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def336]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:399:17: note[note]: called from here
#  397|           Lib_IntVector_Intrinsics_vec256
#  398|               a15 =
#  399|->                 Lib_IntVector_Intrinsics_vec256_add64(a14,
#  400|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r53, a31));
#  401|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def337]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:403:17: note[note]: called from here
#  401|           Lib_IntVector_Intrinsics_vec256
#  402|               a25 =
#  403|->                 Lib_IntVector_Intrinsics_vec256_add64(a24,
#  404|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a31));
#  405|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def338]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:407:17: note[note]: called from here
#  405|           Lib_IntVector_Intrinsics_vec256
#  406|               a35 =
#  407|->                 Lib_IntVector_Intrinsics_vec256_add64(a34,
#  408|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a31));
#  409|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def339]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:411:17: note[note]: called from here
#  409|           Lib_IntVector_Intrinsics_vec256
#  410|               a45 =
#  411|->                 Lib_IntVector_Intrinsics_vec256_add64(a44,
#  412|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r11, a31));
#  413|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def340]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:415:17: note[note]: called from here
#  413|           Lib_IntVector_Intrinsics_vec256
#  414|               a06 =
#  415|->                 Lib_IntVector_Intrinsics_vec256_add64(a05,
#  416|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r51, a41));
#  417|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def341]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:419:17: note[note]: called from here
#  417|           Lib_IntVector_Intrinsics_vec256
#  418|               a16 =
#  419|->                 Lib_IntVector_Intrinsics_vec256_add64(a15,
#  420|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r52, a41));
#  421|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def342]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:423:17: note[note]: called from here
#  421|           Lib_IntVector_Intrinsics_vec256
#  422|               a26 =
#  423|->                 Lib_IntVector_Intrinsics_vec256_add64(a25,
#  424|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r53, a41));
#  425|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def343]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:427:17: note[note]: called from here
#  425|           Lib_IntVector_Intrinsics_vec256
#  426|               a36 =
#  427|->                 Lib_IntVector_Intrinsics_vec256_add64(a35,
#  428|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a41));
#  429|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def344]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:431:17: note[note]: called from here
#  429|           Lib_IntVector_Intrinsics_vec256
#  430|               a46 =
#  431|->                 Lib_IntVector_Intrinsics_vec256_add64(a45,
#  432|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a41));
#  433|           Lib_IntVector_Intrinsics_vec256 t01 = a06;

Error: COMPILER_WARNING: [#def345]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:439:22: note[note]: called from here
#  437|           Lib_IntVector_Intrinsics_vec256 t4 = a46;
#  438|           Lib_IntVector_Intrinsics_vec256
#  439|->             mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#  440|           Lib_IntVector_Intrinsics_vec256
#  441|               z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t01, (uint32_t)26U);

Error: COMPILER_WARNING: [#def346]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:441:18: note[note]: called from here
#  439|               mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#  440|           Lib_IntVector_Intrinsics_vec256
#  441|->             z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t01, (uint32_t)26U);
#  442|           Lib_IntVector_Intrinsics_vec256
#  443|               z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);

Error: COMPILER_WARNING: [#def347]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:443:18: note[note]: called from here
#  441|               z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t01, (uint32_t)26U);
#  442|           Lib_IntVector_Intrinsics_vec256
#  443|->             z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  444|           Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  445|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);

Error: COMPILER_WARNING: [#def348]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:444:46: note[note]: called from here
#  442|           Lib_IntVector_Intrinsics_vec256
#  443|               z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  444|->         Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  445|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  446|           Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t11, z0);

Error: COMPILER_WARNING: [#def349]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:445:46: note[note]: called from here
#  443|               z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  444|           Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  445|->         Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  446|           Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t11, z0);
#  447|           Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);

Error: COMPILER_WARNING: [#def350]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:446:46: note[note]: called from here
#  444|           Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  445|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  446|->         Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t11, z0);
#  447|           Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  448|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def351]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:447:46: note[note]: called from here
#  445|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  446|           Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t11, z0);
#  447|->         Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  448|           Lib_IntVector_Intrinsics_vec256
#  449|               z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);

Error: COMPILER_WARNING: [#def352]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:449:19: note[note]: called from here
#  447|           Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  448|           Lib_IntVector_Intrinsics_vec256
#  449|->             z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);
#  450|           Lib_IntVector_Intrinsics_vec256
#  451|               z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);

Error: COMPILER_WARNING: [#def353]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:451:19: note[note]: called from here
#  449|               z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);
#  450|           Lib_IntVector_Intrinsics_vec256
#  451|->             z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);
#  452|           Lib_IntVector_Intrinsics_vec256
#  453|               t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);

Error: COMPILER_WARNING: [#def354]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:453:17: note[note]: called from here
#  451|               z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);
#  452|           Lib_IntVector_Intrinsics_vec256
#  453|->             t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  454|           Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  455|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);

Error: COMPILER_WARNING: [#def355]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:454:47: note[note]: called from here
#  452|           Lib_IntVector_Intrinsics_vec256
#  453|               t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  454|->         Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  455|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  456|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);

Error: COMPILER_WARNING: [#def356]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:455:47: note[note]: called from here
#  453|               t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  454|           Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  455|->         Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  456|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  457|           Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);

Error: COMPILER_WARNING: [#def357]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:456:47: note[note]: called from here
#  454|           Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  455|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  456|->         Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  457|           Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  458|           Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);

Error: COMPILER_WARNING: [#def358]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:457:46: note[note]: called from here
#  455|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  456|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  457|->         Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  458|           Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  459|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def359]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:458:47: note[note]: called from here
#  456|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  457|           Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  458|->         Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  459|           Lib_IntVector_Intrinsics_vec256
#  460|               z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);

Error: COMPILER_WARNING: [#def360]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:460:19: note[note]: called from here
#  458|           Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  459|           Lib_IntVector_Intrinsics_vec256
#  460|->             z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);
#  461|           Lib_IntVector_Intrinsics_vec256
#  462|               z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);

Error: COMPILER_WARNING: [#def361]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:462:19: note[note]: called from here
#  460|               z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);
#  461|           Lib_IntVector_Intrinsics_vec256
#  462|->             z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  463|           Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  464|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);

Error: COMPILER_WARNING: [#def362]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:463:47: note[note]: called from here
#  461|           Lib_IntVector_Intrinsics_vec256
#  462|               z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  463|->         Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  464|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  465|           Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);

Error: COMPILER_WARNING: [#def363]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:464:47: note[note]: called from here
#  462|               z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  463|           Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  464|->         Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  465|           Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  466|           Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);

Error: COMPILER_WARNING: [#def364]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:465:47: note[note]: called from here
#  463|           Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  464|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  465|->         Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  466|           Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  467|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def365]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:466:47: note[note]: called from here
#  464|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  465|           Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  466|->         Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  467|           Lib_IntVector_Intrinsics_vec256
#  468|               z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);

Error: COMPILER_WARNING: [#def366]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:468:19: note[note]: called from here
#  466|           Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  467|           Lib_IntVector_Intrinsics_vec256
#  468|->             z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  469|           Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  470|           Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);

Error: COMPILER_WARNING: [#def367]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:469:47: note[note]: called from here
#  467|           Lib_IntVector_Intrinsics_vec256
#  468|               z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  469|->         Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  470|           Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);
#  471|           Lib_IntVector_Intrinsics_vec256 o0 = x02;

Error: COMPILER_WARNING: [#def368]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:470:47: note[note]: called from here
#  468|               z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  469|           Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  470|->         Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);
#  471|           Lib_IntVector_Intrinsics_vec256 o0 = x02;
#  472|           Lib_IntVector_Intrinsics_vec256 o1 = x12;

Error: COMPILER_WARNING: [#def369]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:492:46: note[note]: called from here
#  490|           uint64_t u = load64_le(tmp + (uint32_t)8U);
#  491|           uint64_t hi = u;
#  492|->         Lib_IntVector_Intrinsics_vec256 f0 = Lib_IntVector_Intrinsics_vec256_load64(lo);
#  493|           Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_load64(hi);
#  494|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def370]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:493:46: note[note]: called from here
#  491|           uint64_t hi = u;
#  492|           Lib_IntVector_Intrinsics_vec256 f0 = Lib_IntVector_Intrinsics_vec256_load64(lo);
#  493|->         Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_load64(hi);
#  494|           Lib_IntVector_Intrinsics_vec256
#  495|               f010 =

Error: COMPILER_WARNING: [#def371]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:496:17: note[note]: called from here
#  494|           Lib_IntVector_Intrinsics_vec256
#  495|               f010 =
#  496|->                 Lib_IntVector_Intrinsics_vec256_and(f0,
#  497|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));
#  498|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def372]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:500:17: note[note]: called from here
#  498|           Lib_IntVector_Intrinsics_vec256
#  499|               f110 =
#  500|->                 Lib_IntVector_Intrinsics_vec256_and(Lib_IntVector_Intrinsics_vec256_shift_right64(f0,
#  501|                                                                                                     (uint32_t)26U),
#  502|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));

Error: COMPILER_WARNING: [#def373]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:505:17: note[note]: called from here
#  503|           Lib_IntVector_Intrinsics_vec256
#  504|               f20 =
#  505|->                 Lib_IntVector_Intrinsics_vec256_or(Lib_IntVector_Intrinsics_vec256_shift_right64(f0,
#  506|                                                                                                    (uint32_t)52U),
#  507|                                                      Lib_IntVector_Intrinsics_vec256_shift_left64(Lib_IntVector_Intrinsics_vec256_and(f1,

Error: COMPILER_WARNING: [#def374]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:512:17: note[note]: called from here
#  510|           Lib_IntVector_Intrinsics_vec256
#  511|               f30 =
#  512|->                 Lib_IntVector_Intrinsics_vec256_and(Lib_IntVector_Intrinsics_vec256_shift_right64(f1,
#  513|                                                                                                     (uint32_t)14U),
#  514|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));

Error: COMPILER_WARNING: [#def375]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:516:19: note[note]: called from here
#  514|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));
#  515|           Lib_IntVector_Intrinsics_vec256
#  516|->             f40 = Lib_IntVector_Intrinsics_vec256_shift_right64(f1, (uint32_t)40U);
#  517|           Lib_IntVector_Intrinsics_vec256 f01 = f010;
#  518|           Lib_IntVector_Intrinsics_vec256 f111 = f110;

Error: COMPILER_WARNING: [#def376]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:528:48: note[note]: called from here
#  526|           e[4U] = f4;
#  527|           uint64_t b = (uint64_t)1U << rem1 * (uint32_t)8U % (uint32_t)26U;
#  528|->         Lib_IntVector_Intrinsics_vec256 mask = Lib_IntVector_Intrinsics_vec256_load64(b);
#  529|           Lib_IntVector_Intrinsics_vec256 fi = e[rem1 * (uint32_t)8U / (uint32_t)26U];
#  530|           e[rem1 * (uint32_t)8U / (uint32_t)26U] = Lib_IntVector_Intrinsics_vec256_or(fi, mask);

Error: COMPILER_WARNING: [#def377]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:530:50: note[note]: called from here
#  528|           Lib_IntVector_Intrinsics_vec256 mask = Lib_IntVector_Intrinsics_vec256_load64(b);
#  529|           Lib_IntVector_Intrinsics_vec256 fi = e[rem1 * (uint32_t)8U / (uint32_t)26U];
#  530|->         e[rem1 * (uint32_t)8U / (uint32_t)26U] = Lib_IntVector_Intrinsics_vec256_or(fi, mask);
#  531|           Lib_IntVector_Intrinsics_vec256 *r1 = pre0;
#  532|           Lib_IntVector_Intrinsics_vec256 *r5 = pre0 + (uint32_t)5U;

Error: COMPILER_WARNING: [#def378]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:552:47: note[note]: called from here
#  550|           Lib_IntVector_Intrinsics_vec256 a3 = acc0[3U];
#  551|           Lib_IntVector_Intrinsics_vec256 a4 = acc0[4U];
#  552|->         Lib_IntVector_Intrinsics_vec256 a01 = Lib_IntVector_Intrinsics_vec256_add64(a0, f10);
#  553|           Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  554|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);

Error: COMPILER_WARNING: [#def379]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:553:47: note[note]: called from here
#  551|           Lib_IntVector_Intrinsics_vec256 a4 = acc0[4U];
#  552|           Lib_IntVector_Intrinsics_vec256 a01 = Lib_IntVector_Intrinsics_vec256_add64(a0, f10);
#  553|->         Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  554|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  555|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);

Error: COMPILER_WARNING: [#def380]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:554:47: note[note]: called from here
#  552|           Lib_IntVector_Intrinsics_vec256 a01 = Lib_IntVector_Intrinsics_vec256_add64(a0, f10);
#  553|           Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  554|->         Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  555|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  556|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);

Error: COMPILER_WARNING: [#def381]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:555:47: note[note]: called from here
#  553|           Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  554|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  555|->         Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  556|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  557|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);

Error: COMPILER_WARNING: [#def382]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:556:47: note[note]: called from here
#  554|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  555|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  556|->         Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  557|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  558|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);

Error: COMPILER_WARNING: [#def383]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:557:47: note[note]: called from here
#  555|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  556|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  557|->         Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  558|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  559|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);

Error: COMPILER_WARNING: [#def384]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:558:47: note[note]: called from here
#  556|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  557|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  558|->         Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  559|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  560|           Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);

Error: COMPILER_WARNING: [#def385]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:559:47: note[note]: called from here
#  557|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  558|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  559|->         Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  560|           Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);
#  561|           Lib_IntVector_Intrinsics_vec256 a42 = Lib_IntVector_Intrinsics_vec256_mul64(r4, a01);

Error: COMPILER_WARNING: [#def386]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:560:47: note[note]: called from here
#  558|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  559|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  560|->         Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);
#  561|           Lib_IntVector_Intrinsics_vec256 a42 = Lib_IntVector_Intrinsics_vec256_mul64(r4, a01);
#  562|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def387]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:561:47: note[note]: called from here
#  559|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  560|           Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);
#  561|->         Lib_IntVector_Intrinsics_vec256 a42 = Lib_IntVector_Intrinsics_vec256_mul64(r4, a01);
#  562|           Lib_IntVector_Intrinsics_vec256
#  563|               a03 =

Error: COMPILER_WARNING: [#def388]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:564:17: note[note]: called from here
#  562|           Lib_IntVector_Intrinsics_vec256
#  563|               a03 =
#  564|->                 Lib_IntVector_Intrinsics_vec256_add64(a02,
#  565|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a11));
#  566|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def389]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:568:17: note[note]: called from here
#  566|           Lib_IntVector_Intrinsics_vec256
#  567|               a13 =
#  568|->                 Lib_IntVector_Intrinsics_vec256_add64(a12,
#  569|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a11));
#  570|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def390]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:572:17: note[note]: called from here
#  570|           Lib_IntVector_Intrinsics_vec256
#  571|               a23 =
#  572|->                 Lib_IntVector_Intrinsics_vec256_add64(a22,
#  573|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r11, a11));
#  574|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def391]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:576:17: note[note]: called from here
#  574|           Lib_IntVector_Intrinsics_vec256
#  575|               a33 =
#  576|->                 Lib_IntVector_Intrinsics_vec256_add64(a32,
#  577|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r2, a11));
#  578|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def392]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:580:17: note[note]: called from here
#  578|           Lib_IntVector_Intrinsics_vec256
#  579|               a43 =
#  580|->                 Lib_IntVector_Intrinsics_vec256_add64(a42,
#  581|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r3, a11));
#  582|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def393]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:584:17: note[note]: called from here
#  582|           Lib_IntVector_Intrinsics_vec256
#  583|               a04 =
#  584|->                 Lib_IntVector_Intrinsics_vec256_add64(a03,
#  585|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r53, a21));
#  586|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def394]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:588:17: note[note]: called from here
#  586|           Lib_IntVector_Intrinsics_vec256
#  587|               a14 =
#  588|->                 Lib_IntVector_Intrinsics_vec256_add64(a13,
#  589|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a21));
#  590|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def395]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:592:17: note[note]: called from here
#  590|           Lib_IntVector_Intrinsics_vec256
#  591|               a24 =
#  592|->                 Lib_IntVector_Intrinsics_vec256_add64(a23,
#  593|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a21));
#  594|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def396]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:596:17: note[note]: called from here
#  594|           Lib_IntVector_Intrinsics_vec256
#  595|               a34 =
#  596|->                 Lib_IntVector_Intrinsics_vec256_add64(a33,
#  597|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r11, a21));
#  598|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def397]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:600:17: note[note]: called from here
#  598|           Lib_IntVector_Intrinsics_vec256
#  599|               a44 =
#  600|->                 Lib_IntVector_Intrinsics_vec256_add64(a43,
#  601|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r2, a21));
#  602|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def398]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:604:17: note[note]: called from here
#  602|           Lib_IntVector_Intrinsics_vec256
#  603|               a05 =
#  604|->                 Lib_IntVector_Intrinsics_vec256_add64(a04,
#  605|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r52, a31));
#  606|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def399]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:608:17: note[note]: called from here
#  606|           Lib_IntVector_Intrinsics_vec256
#  607|               a15 =
#  608|->                 Lib_IntVector_Intrinsics_vec256_add64(a14,
#  609|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r53, a31));
#  610|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def400]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:612:17: note[note]: called from here
#  610|           Lib_IntVector_Intrinsics_vec256
#  611|               a25 =
#  612|->                 Lib_IntVector_Intrinsics_vec256_add64(a24,
#  613|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a31));
#  614|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def401]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:616:17: note[note]: called from here
#  614|           Lib_IntVector_Intrinsics_vec256
#  615|               a35 =
#  616|->                 Lib_IntVector_Intrinsics_vec256_add64(a34,
#  617|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a31));
#  618|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def402]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:620:17: note[note]: called from here
#  618|           Lib_IntVector_Intrinsics_vec256
#  619|               a45 =
#  620|->                 Lib_IntVector_Intrinsics_vec256_add64(a44,
#  621|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r11, a31));
#  622|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def403]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:624:17: note[note]: called from here
#  622|           Lib_IntVector_Intrinsics_vec256
#  623|               a06 =
#  624|->                 Lib_IntVector_Intrinsics_vec256_add64(a05,
#  625|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r51, a41));
#  626|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def404]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:628:17: note[note]: called from here
#  626|           Lib_IntVector_Intrinsics_vec256
#  627|               a16 =
#  628|->                 Lib_IntVector_Intrinsics_vec256_add64(a15,
#  629|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r52, a41));
#  630|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def405]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:632:17: note[note]: called from here
#  630|           Lib_IntVector_Intrinsics_vec256
#  631|               a26 =
#  632|->                 Lib_IntVector_Intrinsics_vec256_add64(a25,
#  633|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r53, a41));
#  634|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def406]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:636:17: note[note]: called from here
#  634|           Lib_IntVector_Intrinsics_vec256
#  635|               a36 =
#  636|->                 Lib_IntVector_Intrinsics_vec256_add64(a35,
#  637|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a41));
#  638|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def407]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:640:17: note[note]: called from here
#  638|           Lib_IntVector_Intrinsics_vec256
#  639|               a46 =
#  640|->                 Lib_IntVector_Intrinsics_vec256_add64(a45,
#  641|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a41));
#  642|           Lib_IntVector_Intrinsics_vec256 t01 = a06;

Error: COMPILER_WARNING: [#def408]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:648:22: note[note]: called from here
#  646|           Lib_IntVector_Intrinsics_vec256 t4 = a46;
#  647|           Lib_IntVector_Intrinsics_vec256
#  648|->             mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#  649|           Lib_IntVector_Intrinsics_vec256
#  650|               z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t01, (uint32_t)26U);

Error: COMPILER_WARNING: [#def409]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:650:18: note[note]: called from here
#  648|               mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#  649|           Lib_IntVector_Intrinsics_vec256
#  650|->             z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t01, (uint32_t)26U);
#  651|           Lib_IntVector_Intrinsics_vec256
#  652|               z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);

Error: COMPILER_WARNING: [#def410]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:652:18: note[note]: called from here
#  650|               z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t01, (uint32_t)26U);
#  651|           Lib_IntVector_Intrinsics_vec256
#  652|->             z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  653|           Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  654|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);

Error: COMPILER_WARNING: [#def411]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:653:46: note[note]: called from here
#  651|           Lib_IntVector_Intrinsics_vec256
#  652|               z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  653|->         Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  654|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  655|           Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t11, z0);

Error: COMPILER_WARNING: [#def412]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:654:46: note[note]: called from here
#  652|               z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  653|           Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  654|->         Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  655|           Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t11, z0);
#  656|           Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);

Error: COMPILER_WARNING: [#def413]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:655:46: note[note]: called from here
#  653|           Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t01, mask26);
#  654|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  655|->         Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t11, z0);
#  656|           Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  657|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def414]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:656:46: note[note]: called from here
#  654|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  655|           Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t11, z0);
#  656|->         Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  657|           Lib_IntVector_Intrinsics_vec256
#  658|               z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);

Error: COMPILER_WARNING: [#def415]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:658:19: note[note]: called from here
#  656|           Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  657|           Lib_IntVector_Intrinsics_vec256
#  658|->             z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);
#  659|           Lib_IntVector_Intrinsics_vec256
#  660|               z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);

Error: COMPILER_WARNING: [#def416]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:660:19: note[note]: called from here
#  658|               z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);
#  659|           Lib_IntVector_Intrinsics_vec256
#  660|->             z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);
#  661|           Lib_IntVector_Intrinsics_vec256
#  662|               t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);

Error: COMPILER_WARNING: [#def417]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:662:17: note[note]: called from here
#  660|               z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);
#  661|           Lib_IntVector_Intrinsics_vec256
#  662|->             t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  663|           Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  664|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);

Error: COMPILER_WARNING: [#def418]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:663:47: note[note]: called from here
#  661|           Lib_IntVector_Intrinsics_vec256
#  662|               t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  663|->         Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  664|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  665|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);

Error: COMPILER_WARNING: [#def419]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:664:47: note[note]: called from here
#  662|               t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  663|           Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  664|->         Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  665|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  666|           Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);

Error: COMPILER_WARNING: [#def420]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:665:47: note[note]: called from here
#  663|           Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  664|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  665|->         Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  666|           Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  667|           Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);

Error: COMPILER_WARNING: [#def421]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:666:46: note[note]: called from here
#  664|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  665|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  666|->         Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  667|           Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  668|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def422]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:667:47: note[note]: called from here
#  665|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  666|           Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  667|->         Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  668|           Lib_IntVector_Intrinsics_vec256
#  669|               z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);

Error: COMPILER_WARNING: [#def423]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:669:19: note[note]: called from here
#  667|           Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  668|           Lib_IntVector_Intrinsics_vec256
#  669|->             z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);
#  670|           Lib_IntVector_Intrinsics_vec256
#  671|               z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);

Error: COMPILER_WARNING: [#def424]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:671:19: note[note]: called from here
#  669|               z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);
#  670|           Lib_IntVector_Intrinsics_vec256
#  671|->             z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  672|           Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  673|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);

Error: COMPILER_WARNING: [#def425]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:672:47: note[note]: called from here
#  670|           Lib_IntVector_Intrinsics_vec256
#  671|               z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  672|->         Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  673|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  674|           Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);

Error: COMPILER_WARNING: [#def426]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:673:47: note[note]: called from here
#  671|               z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  672|           Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  673|->         Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  674|           Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  675|           Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);

Error: COMPILER_WARNING: [#def427]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:674:47: note[note]: called from here
#  672|           Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  673|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  674|->         Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  675|           Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  676|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def428]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:675:47: note[note]: called from here
#  673|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  674|           Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  675|->         Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  676|           Lib_IntVector_Intrinsics_vec256
#  677|               z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);

Error: COMPILER_WARNING: [#def429]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:677:19: note[note]: called from here
#  675|           Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  676|           Lib_IntVector_Intrinsics_vec256
#  677|->             z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  678|           Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  679|           Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);

Error: COMPILER_WARNING: [#def430]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:678:47: note[note]: called from here
#  676|           Lib_IntVector_Intrinsics_vec256
#  677|               z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  678|->         Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  679|           Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);
#  680|           Lib_IntVector_Intrinsics_vec256 o0 = x02;

Error: COMPILER_WARNING: [#def431]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:679:47: note[note]: called from here
#  677|               z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  678|           Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  679|->         Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);
#  680|           Lib_IntVector_Intrinsics_vec256 o0 = x02;
#  681|           Lib_IntVector_Intrinsics_vec256 o1 = x12;

Error: COMPILER_WARNING: [#def432]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:702:46: note[note]: called from here
#  700|           uint64_t u = load64_le(tmp + (uint32_t)8U);
#  701|           uint64_t hi = u;
#  702|->         Lib_IntVector_Intrinsics_vec256 f0 = Lib_IntVector_Intrinsics_vec256_load64(lo);
#  703|           Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_load64(hi);
#  704|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def433]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:703:46: note[note]: called from here
#  701|           uint64_t hi = u;
#  702|           Lib_IntVector_Intrinsics_vec256 f0 = Lib_IntVector_Intrinsics_vec256_load64(lo);
#  703|->         Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_load64(hi);
#  704|           Lib_IntVector_Intrinsics_vec256
#  705|               f010 =

Error: COMPILER_WARNING: [#def434]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:706:17: note[note]: called from here
#  704|           Lib_IntVector_Intrinsics_vec256
#  705|               f010 =
#  706|->                 Lib_IntVector_Intrinsics_vec256_and(f0,
#  707|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));
#  708|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def435]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:710:17: note[note]: called from here
#  708|           Lib_IntVector_Intrinsics_vec256
#  709|               f110 =
#  710|->                 Lib_IntVector_Intrinsics_vec256_and(Lib_IntVector_Intrinsics_vec256_shift_right64(f0,
#  711|                                                                                                     (uint32_t)26U),
#  712|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));

Error: COMPILER_WARNING: [#def436]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:715:17: note[note]: called from here
#  713|           Lib_IntVector_Intrinsics_vec256
#  714|               f20 =
#  715|->                 Lib_IntVector_Intrinsics_vec256_or(Lib_IntVector_Intrinsics_vec256_shift_right64(f0,
#  716|                                                                                                    (uint32_t)52U),
#  717|                                                      Lib_IntVector_Intrinsics_vec256_shift_left64(Lib_IntVector_Intrinsics_vec256_and(f1,

Error: COMPILER_WARNING: [#def437]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:722:17: note[note]: called from here
#  720|           Lib_IntVector_Intrinsics_vec256
#  721|               f30 =
#  722|->                 Lib_IntVector_Intrinsics_vec256_and(Lib_IntVector_Intrinsics_vec256_shift_right64(f1,
#  723|                                                                                                     (uint32_t)14U),
#  724|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));

Error: COMPILER_WARNING: [#def438]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:726:19: note[note]: called from here
#  724|                                                       Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU));
#  725|           Lib_IntVector_Intrinsics_vec256
#  726|->             f40 = Lib_IntVector_Intrinsics_vec256_shift_right64(f1, (uint32_t)40U);
#  727|           Lib_IntVector_Intrinsics_vec256 f01 = f010;
#  728|           Lib_IntVector_Intrinsics_vec256 f111 = f110;

Error: COMPILER_WARNING: [#def439]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:738:48: note[note]: called from here
#  736|           e[4U] = f41;
#  737|           uint64_t b = (uint64_t)0x1000000U;
#  738|->         Lib_IntVector_Intrinsics_vec256 mask = Lib_IntVector_Intrinsics_vec256_load64(b);
#  739|           Lib_IntVector_Intrinsics_vec256 f4 = e[4U];
#  740|           e[4U] = Lib_IntVector_Intrinsics_vec256_or(f4, mask);

Error: COMPILER_WARNING: [#def440]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:740:17: note[note]: called from here
#  738|           Lib_IntVector_Intrinsics_vec256 mask = Lib_IntVector_Intrinsics_vec256_load64(b);
#  739|           Lib_IntVector_Intrinsics_vec256 f4 = e[4U];
#  740|->         e[4U] = Lib_IntVector_Intrinsics_vec256_or(f4, mask);
#  741|           Lib_IntVector_Intrinsics_vec256 *r1 = pre;
#  742|           Lib_IntVector_Intrinsics_vec256 *r5 = pre + (uint32_t)5U;

Error: COMPILER_WARNING: [#def441]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:762:47: note[note]: called from here
#  760|           Lib_IntVector_Intrinsics_vec256 a3 = acc[3U];
#  761|           Lib_IntVector_Intrinsics_vec256 a4 = acc[4U];
#  762|->         Lib_IntVector_Intrinsics_vec256 a01 = Lib_IntVector_Intrinsics_vec256_add64(a0, f10);
#  763|           Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  764|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);

Error: COMPILER_WARNING: [#def442]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:763:47: note[note]: called from here
#  761|           Lib_IntVector_Intrinsics_vec256 a4 = acc[4U];
#  762|           Lib_IntVector_Intrinsics_vec256 a01 = Lib_IntVector_Intrinsics_vec256_add64(a0, f10);
#  763|->         Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  764|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  765|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);

Error: COMPILER_WARNING: [#def443]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:764:47: note[note]: called from here
#  762|           Lib_IntVector_Intrinsics_vec256 a01 = Lib_IntVector_Intrinsics_vec256_add64(a0, f10);
#  763|           Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  764|->         Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  765|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  766|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);

Error: COMPILER_WARNING: [#def444]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:765:47: note[note]: called from here
#  763|           Lib_IntVector_Intrinsics_vec256 a11 = Lib_IntVector_Intrinsics_vec256_add64(a1, f11);
#  764|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  765|->         Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  766|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  767|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);

Error: COMPILER_WARNING: [#def445]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:766:47: note[note]: called from here
#  764|           Lib_IntVector_Intrinsics_vec256 a21 = Lib_IntVector_Intrinsics_vec256_add64(a2, f12);
#  765|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  766|->         Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  767|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  768|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);

Error: COMPILER_WARNING: [#def446]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:767:47: note[note]: called from here
#  765|           Lib_IntVector_Intrinsics_vec256 a31 = Lib_IntVector_Intrinsics_vec256_add64(a3, f13);
#  766|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  767|->         Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  768|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  769|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);

Error: COMPILER_WARNING: [#def447]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:768:47: note[note]: called from here
#  766|           Lib_IntVector_Intrinsics_vec256 a41 = Lib_IntVector_Intrinsics_vec256_add64(a4, f14);
#  767|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  768|->         Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  769|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  770|           Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);

Error: COMPILER_WARNING: [#def448]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:769:47: note[note]: called from here
#  767|           Lib_IntVector_Intrinsics_vec256 a02 = Lib_IntVector_Intrinsics_vec256_mul64(r0, a01);
#  768|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  769|->         Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  770|           Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);
#  771|           Lib_IntVector_Intrinsics_vec256 a42 = Lib_IntVector_Intrinsics_vec256_mul64(r4, a01);

Error: COMPILER_WARNING: [#def449]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:770:47: note[note]: called from here
#  768|           Lib_IntVector_Intrinsics_vec256 a12 = Lib_IntVector_Intrinsics_vec256_mul64(r11, a01);
#  769|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  770|->         Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);
#  771|           Lib_IntVector_Intrinsics_vec256 a42 = Lib_IntVector_Intrinsics_vec256_mul64(r4, a01);
#  772|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def450]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:771:47: note[note]: called from here
#  769|           Lib_IntVector_Intrinsics_vec256 a22 = Lib_IntVector_Intrinsics_vec256_mul64(r2, a01);
#  770|           Lib_IntVector_Intrinsics_vec256 a32 = Lib_IntVector_Intrinsics_vec256_mul64(r3, a01);
#  771|->         Lib_IntVector_Intrinsics_vec256 a42 = Lib_IntVector_Intrinsics_vec256_mul64(r4, a01);
#  772|           Lib_IntVector_Intrinsics_vec256
#  773|               a03 =

Error: COMPILER_WARNING: [#def451]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:774:17: note[note]: called from here
#  772|           Lib_IntVector_Intrinsics_vec256
#  773|               a03 =
#  774|->                 Lib_IntVector_Intrinsics_vec256_add64(a02,
#  775|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a11));
#  776|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def452]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:778:17: note[note]: called from here
#  776|           Lib_IntVector_Intrinsics_vec256
#  777|               a13 =
#  778|->                 Lib_IntVector_Intrinsics_vec256_add64(a12,
#  779|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a11));
#  780|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def453]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:782:17: note[note]: called from here
#  780|           Lib_IntVector_Intrinsics_vec256
#  781|               a23 =
#  782|->                 Lib_IntVector_Intrinsics_vec256_add64(a22,
#  783|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r11, a11));
#  784|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def454]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:786:17: note[note]: called from here
#  784|           Lib_IntVector_Intrinsics_vec256
#  785|               a33 =
#  786|->                 Lib_IntVector_Intrinsics_vec256_add64(a32,
#  787|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r2, a11));
#  788|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def455]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:790:17: note[note]: called from here
#  788|           Lib_IntVector_Intrinsics_vec256
#  789|               a43 =
#  790|->                 Lib_IntVector_Intrinsics_vec256_add64(a42,
#  791|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r3, a11));
#  792|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def456]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:794:17: note[note]: called from here
#  792|           Lib_IntVector_Intrinsics_vec256
#  793|               a04 =
#  794|->                 Lib_IntVector_Intrinsics_vec256_add64(a03,
#  795|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r53, a21));
#  796|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def457]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:798:17: note[note]: called from here
#  796|           Lib_IntVector_Intrinsics_vec256
#  797|               a14 =
#  798|->                 Lib_IntVector_Intrinsics_vec256_add64(a13,
#  799|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a21));
#  800|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def458]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:802:17: note[note]: called from here
#  800|           Lib_IntVector_Intrinsics_vec256
#  801|               a24 =
#  802|->                 Lib_IntVector_Intrinsics_vec256_add64(a23,
#  803|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a21));
#  804|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def459]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:806:17: note[note]: called from here
#  804|           Lib_IntVector_Intrinsics_vec256
#  805|               a34 =
#  806|->                 Lib_IntVector_Intrinsics_vec256_add64(a33,
#  807|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r11, a21));
#  808|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def460]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:810:17: note[note]: called from here
#  808|           Lib_IntVector_Intrinsics_vec256
#  809|               a44 =
#  810|->                 Lib_IntVector_Intrinsics_vec256_add64(a43,
#  811|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r2, a21));
#  812|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def461]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:814:17: note[note]: called from here
#  812|           Lib_IntVector_Intrinsics_vec256
#  813|               a05 =
#  814|->                 Lib_IntVector_Intrinsics_vec256_add64(a04,
#  815|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r52, a31));
#  816|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def462]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:818:17: note[note]: called from here
#  816|           Lib_IntVector_Intrinsics_vec256
#  817|               a15 =
#  818|->                 Lib_IntVector_Intrinsics_vec256_add64(a14,
#  819|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r53, a31));
#  820|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def463]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:822:17: note[note]: called from here
#  820|           Lib_IntVector_Intrinsics_vec256
#  821|               a25 =
#  822|->                 Lib_IntVector_Intrinsics_vec256_add64(a24,
#  823|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a31));
#  824|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def464]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:826:17: note[note]: called from here
#  824|           Lib_IntVector_Intrinsics_vec256
#  825|               a35 =
#  826|->                 Lib_IntVector_Intrinsics_vec256_add64(a34,
#  827|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a31));
#  828|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def465]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:830:17: note[note]: called from here
#  828|           Lib_IntVector_Intrinsics_vec256
#  829|               a45 =
#  830|->                 Lib_IntVector_Intrinsics_vec256_add64(a44,
#  831|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r11, a31));
#  832|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def466]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:834:17: note[note]: called from here
#  832|           Lib_IntVector_Intrinsics_vec256
#  833|               a06 =
#  834|->                 Lib_IntVector_Intrinsics_vec256_add64(a05,
#  835|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r51, a41));
#  836|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def467]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:838:17: note[note]: called from here
#  836|           Lib_IntVector_Intrinsics_vec256
#  837|               a16 =
#  838|->                 Lib_IntVector_Intrinsics_vec256_add64(a15,
#  839|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r52, a41));
#  840|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def468]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:842:17: note[note]: called from here
#  840|           Lib_IntVector_Intrinsics_vec256
#  841|               a26 =
#  842|->                 Lib_IntVector_Intrinsics_vec256_add64(a25,
#  843|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r53, a41));
#  844|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def469]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:846:17: note[note]: called from here
#  844|           Lib_IntVector_Intrinsics_vec256
#  845|               a36 =
#  846|->                 Lib_IntVector_Intrinsics_vec256_add64(a35,
#  847|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r54, a41));
#  848|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def470]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:850:17: note[note]: called from here
#  848|           Lib_IntVector_Intrinsics_vec256
#  849|               a46 =
#  850|->                 Lib_IntVector_Intrinsics_vec256_add64(a45,
#  851|                                                         Lib_IntVector_Intrinsics_vec256_mul64(r0, a41));
#  852|           Lib_IntVector_Intrinsics_vec256 t0 = a06;

Error: COMPILER_WARNING: [#def471]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:858:22: note[note]: called from here
#  856|           Lib_IntVector_Intrinsics_vec256 t4 = a46;
#  857|           Lib_IntVector_Intrinsics_vec256
#  858|->             mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#  859|           Lib_IntVector_Intrinsics_vec256
#  860|               z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t0, (uint32_t)26U);

Error: COMPILER_WARNING: [#def472]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:860:18: note[note]: called from here
#  858|               mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#  859|           Lib_IntVector_Intrinsics_vec256
#  860|->             z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t0, (uint32_t)26U);
#  861|           Lib_IntVector_Intrinsics_vec256
#  862|               z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);

Error: COMPILER_WARNING: [#def473]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:862:18: note[note]: called from here
#  860|               z0 = Lib_IntVector_Intrinsics_vec256_shift_right64(t0, (uint32_t)26U);
#  861|           Lib_IntVector_Intrinsics_vec256
#  862|->             z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  863|           Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t0, mask26);
#  864|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);

Error: COMPILER_WARNING: [#def474]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:863:46: note[note]: called from here
#  861|           Lib_IntVector_Intrinsics_vec256
#  862|               z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  863|->         Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t0, mask26);
#  864|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  865|           Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t1, z0);

Error: COMPILER_WARNING: [#def475]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:864:46: note[note]: called from here
#  862|               z1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)26U);
#  863|           Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t0, mask26);
#  864|->         Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  865|           Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t1, z0);
#  866|           Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);

Error: COMPILER_WARNING: [#def476]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:865:46: note[note]: called from here
#  863|           Lib_IntVector_Intrinsics_vec256 x0 = Lib_IntVector_Intrinsics_vec256_and(t0, mask26);
#  864|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  865|->         Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t1, z0);
#  866|           Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  867|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def477]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:866:46: note[note]: called from here
#  864|           Lib_IntVector_Intrinsics_vec256 x3 = Lib_IntVector_Intrinsics_vec256_and(t3, mask26);
#  865|           Lib_IntVector_Intrinsics_vec256 x1 = Lib_IntVector_Intrinsics_vec256_add64(t1, z0);
#  866|->         Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  867|           Lib_IntVector_Intrinsics_vec256
#  868|               z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);

Error: COMPILER_WARNING: [#def478]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:868:19: note[note]: called from here
#  866|           Lib_IntVector_Intrinsics_vec256 x4 = Lib_IntVector_Intrinsics_vec256_add64(t4, z1);
#  867|           Lib_IntVector_Intrinsics_vec256
#  868|->             z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);
#  869|           Lib_IntVector_Intrinsics_vec256
#  870|               z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);

Error: COMPILER_WARNING: [#def479]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:870:19: note[note]: called from here
#  868|               z01 = Lib_IntVector_Intrinsics_vec256_shift_right64(x1, (uint32_t)26U);
#  869|           Lib_IntVector_Intrinsics_vec256
#  870|->             z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);
#  871|           Lib_IntVector_Intrinsics_vec256
#  872|               t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);

Error: COMPILER_WARNING: [#def480]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:872:17: note[note]: called from here
#  870|               z11 = Lib_IntVector_Intrinsics_vec256_shift_right64(x4, (uint32_t)26U);
#  871|           Lib_IntVector_Intrinsics_vec256
#  872|->             t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  873|           Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  874|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);

Error: COMPILER_WARNING: [#def481]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:873:47: note[note]: called from here
#  871|           Lib_IntVector_Intrinsics_vec256
#  872|               t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  873|->         Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  874|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  875|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);

Error: COMPILER_WARNING: [#def482]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:874:47: note[note]: called from here
#  872|               t = Lib_IntVector_Intrinsics_vec256_shift_left64(z11, (uint32_t)2U);
#  873|           Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  874|->         Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  875|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  876|           Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);

Error: COMPILER_WARNING: [#def483]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:875:47: note[note]: called from here
#  873|           Lib_IntVector_Intrinsics_vec256 z12 = Lib_IntVector_Intrinsics_vec256_add64(z11, t);
#  874|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  875|->         Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  876|           Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  877|           Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);

Error: COMPILER_WARNING: [#def484]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:876:46: note[note]: called from here
#  874|           Lib_IntVector_Intrinsics_vec256 x11 = Lib_IntVector_Intrinsics_vec256_and(x1, mask26);
#  875|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  876|->         Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  877|           Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  878|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def485]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:877:47: note[note]: called from here
#  875|           Lib_IntVector_Intrinsics_vec256 x41 = Lib_IntVector_Intrinsics_vec256_and(x4, mask26);
#  876|           Lib_IntVector_Intrinsics_vec256 x2 = Lib_IntVector_Intrinsics_vec256_add64(t2, z01);
#  877|->         Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  878|           Lib_IntVector_Intrinsics_vec256
#  879|               z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);

Error: COMPILER_WARNING: [#def486]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:879:19: note[note]: called from here
#  877|           Lib_IntVector_Intrinsics_vec256 x01 = Lib_IntVector_Intrinsics_vec256_add64(x0, z12);
#  878|           Lib_IntVector_Intrinsics_vec256
#  879|->             z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);
#  880|           Lib_IntVector_Intrinsics_vec256
#  881|               z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);

Error: COMPILER_WARNING: [#def487]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:881:19: note[note]: called from here
#  879|               z02 = Lib_IntVector_Intrinsics_vec256_shift_right64(x2, (uint32_t)26U);
#  880|           Lib_IntVector_Intrinsics_vec256
#  881|->             z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  882|           Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  883|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);

Error: COMPILER_WARNING: [#def488]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:882:47: note[note]: called from here
#  880|           Lib_IntVector_Intrinsics_vec256
#  881|               z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  882|->         Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  883|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  884|           Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);

Error: COMPILER_WARNING: [#def489]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:883:47: note[note]: called from here
#  881|               z13 = Lib_IntVector_Intrinsics_vec256_shift_right64(x01, (uint32_t)26U);
#  882|           Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  883|->         Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  884|           Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  885|           Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);

Error: COMPILER_WARNING: [#def490]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:884:47: note[note]: called from here
#  882|           Lib_IntVector_Intrinsics_vec256 x21 = Lib_IntVector_Intrinsics_vec256_and(x2, mask26);
#  883|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  884|->         Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  885|           Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  886|           Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def491]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:885:47: note[note]: called from here
#  883|           Lib_IntVector_Intrinsics_vec256 x02 = Lib_IntVector_Intrinsics_vec256_and(x01, mask26);
#  884|           Lib_IntVector_Intrinsics_vec256 x31 = Lib_IntVector_Intrinsics_vec256_add64(x3, z02);
#  885|->         Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  886|           Lib_IntVector_Intrinsics_vec256
#  887|               z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);

Error: COMPILER_WARNING: [#def492]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:887:19: note[note]: called from here
#  885|           Lib_IntVector_Intrinsics_vec256 x12 = Lib_IntVector_Intrinsics_vec256_add64(x11, z13);
#  886|           Lib_IntVector_Intrinsics_vec256
#  887|->             z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  888|           Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  889|           Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);

Error: COMPILER_WARNING: [#def493]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:888:47: note[note]: called from here
#  886|           Lib_IntVector_Intrinsics_vec256
#  887|               z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  888|->         Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  889|           Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);
#  890|           Lib_IntVector_Intrinsics_vec256 o0 = x02;

Error: COMPILER_WARNING: [#def494]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:889:47: note[note]: called from here
#  887|               z03 = Lib_IntVector_Intrinsics_vec256_shift_right64(x31, (uint32_t)26U);
#  888|           Lib_IntVector_Intrinsics_vec256 x32 = Lib_IntVector_Intrinsics_vec256_and(x31, mask26);
#  889|->         Lib_IntVector_Intrinsics_vec256 x42 = Lib_IntVector_Intrinsics_vec256_add64(x41, z03);
#  890|           Lib_IntVector_Intrinsics_vec256 o0 = x02;
#  891|           Lib_IntVector_Intrinsics_vec256 o1 = x12;

Error: COMPILER_WARNING: [#def495]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20Poly1305_256.c:933:37: warning[-Wpsabi]: AVX vector return without AVX enabled changes the ABI
#  931|       uint64_t u = load64_le(block + (uint32_t)8U);
#  932|       uint64_t hi = u;
#  933|->     Lib_IntVector_Intrinsics_vec256 f0 = Lib_IntVector_Intrinsics_vec256_load64(lo);
#  934|       Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_load64(hi);
#  935|       Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def496]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20_Vec256.c:193:5: note[note]: called from here
#  191|                       uint32_t x = r;
#  192|                       os[i] = x;);
#  193|->     KRML_MAYBE_FOR16(i,
#  194|                        (uint32_t)0U,
#  195|                        (uint32_t)16U,

Error: COMPILER_WARNING: [#def497]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20_Vec256.c:203:13: note[note]: called from here
#  201|       Lib_IntVector_Intrinsics_vec256
#  202|           ctr1 =
#  203|->             Lib_IntVector_Intrinsics_vec256_load32s((uint32_t)0U,
#  204|                                                       (uint32_t)1U,
#  205|                                                       (uint32_t)2U,

Error: COMPILER_WARNING: [#def498]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20_Vec256.c:212:16: note[note]: called from here
#  210|                                                       (uint32_t)7U);
#  211|       Lib_IntVector_Intrinsics_vec256 c12 = ctx[12U];
#  212|->     ctx[12U] = Lib_IntVector_Intrinsics_vec256_add32(c12, ctr1);
#  213|   }
#  214|   

Error: COMPILER_WARNING: [#def499]
nss-3.110/nss/lib/freebl/verified/Hacl_Chacha20_Vec256.c:261:13: warning[-Wpsabi]: AVX vector return without AVX enabled changes the ABI
#  259|           Lib_IntVector_Intrinsics_vec256 v70 = st7;
#  260|           Lib_IntVector_Intrinsics_vec256
#  261|->             v0_ = Lib_IntVector_Intrinsics_vec256_interleave_low32(v00, v16);
#  262|           Lib_IntVector_Intrinsics_vec256
#  263|               v1_ = Lib_IntVector_Intrinsics_vec256_interleave_high32(v00, v16);

Error: COMPILER_WARNING: [#def500]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:32:37: warning[-Wpsabi]: AVX vector return without AVX enabled changes the ABI
#   30|       KRML_PRE_ALIGN(32)
#   31|       Lib_IntVector_Intrinsics_vec256 e[5U] KRML_POST_ALIGN(32) = { 0U };
#   32|->     Lib_IntVector_Intrinsics_vec256 lo = Lib_IntVector_Intrinsics_vec256_load64_le(b);
#   33|       Lib_IntVector_Intrinsics_vec256
#   34|           hi = Lib_IntVector_Intrinsics_vec256_load64_le(b + (uint32_t)32U);

Error: COMPILER_WARNING: [#def501]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:32:42: note[note]: called from here
#   30|       KRML_PRE_ALIGN(32)
#   31|       Lib_IntVector_Intrinsics_vec256 e[5U] KRML_POST_ALIGN(32) = { 0U };
#   32|->     Lib_IntVector_Intrinsics_vec256 lo = Lib_IntVector_Intrinsics_vec256_load64_le(b);
#   33|       Lib_IntVector_Intrinsics_vec256
#   34|           hi = Lib_IntVector_Intrinsics_vec256_load64_le(b + (uint32_t)32U);

Error: COMPILER_WARNING: [#def502]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:34:14: note[note]: called from here
#   32|       Lib_IntVector_Intrinsics_vec256 lo = Lib_IntVector_Intrinsics_vec256_load64_le(b);
#   33|       Lib_IntVector_Intrinsics_vec256
#   34|->         hi = Lib_IntVector_Intrinsics_vec256_load64_le(b + (uint32_t)32U);
#   35|       Lib_IntVector_Intrinsics_vec256
#   36|           mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);

Error: COMPILER_WARNING: [#def503]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:36:18: note[note]: called from here
#   34|           hi = Lib_IntVector_Intrinsics_vec256_load64_le(b + (uint32_t)32U);
#   35|       Lib_IntVector_Intrinsics_vec256
#   36|->         mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#   37|       Lib_IntVector_Intrinsics_vec256 m0 = Lib_IntVector_Intrinsics_vec256_interleave_low128(lo, hi);
#   38|       Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def504]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:37:42: note[note]: called from here
#   35|       Lib_IntVector_Intrinsics_vec256
#   36|           mask26 = Lib_IntVector_Intrinsics_vec256_load64((uint64_t)0x3ffffffU);
#   37|->     Lib_IntVector_Intrinsics_vec256 m0 = Lib_IntVector_Intrinsics_vec256_interleave_low128(lo, hi);
#   38|       Lib_IntVector_Intrinsics_vec256
#   39|           m1 = Lib_IntVector_Intrinsics_vec256_interleave_high128(lo, hi);

Error: COMPILER_WARNING: [#def505]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:39:14: note[note]: called from here
#   37|       Lib_IntVector_Intrinsics_vec256 m0 = Lib_IntVector_Intrinsics_vec256_interleave_low128(lo, hi);
#   38|       Lib_IntVector_Intrinsics_vec256
#   39|->         m1 = Lib_IntVector_Intrinsics_vec256_interleave_high128(lo, hi);
#   40|       Lib_IntVector_Intrinsics_vec256
#   41|           m2 = Lib_IntVector_Intrinsics_vec256_shift_right(m0, (uint32_t)48U);

Error: COMPILER_WARNING: [#def506]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:41:14: note[note]: called from here
#   39|           m1 = Lib_IntVector_Intrinsics_vec256_interleave_high128(lo, hi);
#   40|       Lib_IntVector_Intrinsics_vec256
#   41|->         m2 = Lib_IntVector_Intrinsics_vec256_shift_right(m0, (uint32_t)48U);
#   42|       Lib_IntVector_Intrinsics_vec256
#   43|           m3 = Lib_IntVector_Intrinsics_vec256_shift_right(m1, (uint32_t)48U);

Error: COMPILER_WARNING: [#def507]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:43:14: note[note]: called from here
#   41|           m2 = Lib_IntVector_Intrinsics_vec256_shift_right(m0, (uint32_t)48U);
#   42|       Lib_IntVector_Intrinsics_vec256
#   43|->         m3 = Lib_IntVector_Intrinsics_vec256_shift_right(m1, (uint32_t)48U);
#   44|       Lib_IntVector_Intrinsics_vec256 m4 = Lib_IntVector_Intrinsics_vec256_interleave_high64(m0, m1);
#   45|       Lib_IntVector_Intrinsics_vec256 t0 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m0, m1);

Error: COMPILER_WARNING: [#def508]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:44:42: note[note]: called from here
#   42|       Lib_IntVector_Intrinsics_vec256
#   43|           m3 = Lib_IntVector_Intrinsics_vec256_shift_right(m1, (uint32_t)48U);
#   44|->     Lib_IntVector_Intrinsics_vec256 m4 = Lib_IntVector_Intrinsics_vec256_interleave_high64(m0, m1);
#   45|       Lib_IntVector_Intrinsics_vec256 t0 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m0, m1);
#   46|       Lib_IntVector_Intrinsics_vec256 t3 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m2, m3);

Error: COMPILER_WARNING: [#def509]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:45:42: note[note]: called from here
#   43|           m3 = Lib_IntVector_Intrinsics_vec256_shift_right(m1, (uint32_t)48U);
#   44|       Lib_IntVector_Intrinsics_vec256 m4 = Lib_IntVector_Intrinsics_vec256_interleave_high64(m0, m1);
#   45|->     Lib_IntVector_Intrinsics_vec256 t0 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m0, m1);
#   46|       Lib_IntVector_Intrinsics_vec256 t3 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m2, m3);
#   47|       Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def510]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:46:42: note[note]: called from here
#   44|       Lib_IntVector_Intrinsics_vec256 m4 = Lib_IntVector_Intrinsics_vec256_interleave_high64(m0, m1);
#   45|       Lib_IntVector_Intrinsics_vec256 t0 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m0, m1);
#   46|->     Lib_IntVector_Intrinsics_vec256 t3 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m2, m3);
#   47|       Lib_IntVector_Intrinsics_vec256
#   48|           t2 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)4U);

Error: COMPILER_WARNING: [#def511]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:48:14: note[note]: called from here
#   46|       Lib_IntVector_Intrinsics_vec256 t3 = Lib_IntVector_Intrinsics_vec256_interleave_low64(m2, m3);
#   47|       Lib_IntVector_Intrinsics_vec256
#   48|->         t2 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)4U);
#   49|       Lib_IntVector_Intrinsics_vec256 o20 = Lib_IntVector_Intrinsics_vec256_and(t2, mask26);
#   50|       Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def512]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:49:43: note[note]: called from here
#   47|       Lib_IntVector_Intrinsics_vec256
#   48|           t2 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)4U);
#   49|->     Lib_IntVector_Intrinsics_vec256 o20 = Lib_IntVector_Intrinsics_vec256_and(t2, mask26);
#   50|       Lib_IntVector_Intrinsics_vec256
#   51|           t1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t0, (uint32_t)26U);

Error: COMPILER_WARNING: [#def513]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:51:14: note[note]: called from here
#   49|       Lib_IntVector_Intrinsics_vec256 o20 = Lib_IntVector_Intrinsics_vec256_and(t2, mask26);
#   50|       Lib_IntVector_Intrinsics_vec256
#   51|->         t1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t0, (uint32_t)26U);
#   52|       Lib_IntVector_Intrinsics_vec256 o10 = Lib_IntVector_Intrinsics_vec256_and(t1, mask26);
#   53|       Lib_IntVector_Intrinsics_vec256 o5 = Lib_IntVector_Intrinsics_vec256_and(t0, mask26);

Error: COMPILER_WARNING: [#def514]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:52:43: note[note]: called from here
#   50|       Lib_IntVector_Intrinsics_vec256
#   51|           t1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t0, (uint32_t)26U);
#   52|->     Lib_IntVector_Intrinsics_vec256 o10 = Lib_IntVector_Intrinsics_vec256_and(t1, mask26);
#   53|       Lib_IntVector_Intrinsics_vec256 o5 = Lib_IntVector_Intrinsics_vec256_and(t0, mask26);
#   54|       Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def515]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:53:42: note[note]: called from here
#   51|           t1 = Lib_IntVector_Intrinsics_vec256_shift_right64(t0, (uint32_t)26U);
#   52|       Lib_IntVector_Intrinsics_vec256 o10 = Lib_IntVector_Intrinsics_vec256_and(t1, mask26);
#   53|->     Lib_IntVector_Intrinsics_vec256 o5 = Lib_IntVector_Intrinsics_vec256_and(t0, mask26);
#   54|       Lib_IntVector_Intrinsics_vec256
#   55|           t31 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)30U);

Error: COMPILER_WARNING: [#def516]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:55:15: note[note]: called from here
#   53|       Lib_IntVector_Intrinsics_vec256 o5 = Lib_IntVector_Intrinsics_vec256_and(t0, mask26);
#   54|       Lib_IntVector_Intrinsics_vec256
#   55|->         t31 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)30U);
#   56|       Lib_IntVector_Intrinsics_vec256 o30 = Lib_IntVector_Intrinsics_vec256_and(t31, mask26);
#   57|       Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def517]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:56:43: note[note]: called from here
#   54|       Lib_IntVector_Intrinsics_vec256
#   55|           t31 = Lib_IntVector_Intrinsics_vec256_shift_right64(t3, (uint32_t)30U);
#   56|->     Lib_IntVector_Intrinsics_vec256 o30 = Lib_IntVector_Intrinsics_vec256_and(t31, mask26);
#   57|       Lib_IntVector_Intrinsics_vec256
#   58|           o40 = Lib_IntVector_Intrinsics_vec256_shift_right64(m4, (uint32_t)40U);

Error: COMPILER_WARNING: [#def518]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:58:15: note[note]: called from here
#   56|       Lib_IntVector_Intrinsics_vec256 o30 = Lib_IntVector_Intrinsics_vec256_and(t31, mask26);
#   57|       Lib_IntVector_Intrinsics_vec256
#   58|->         o40 = Lib_IntVector_Intrinsics_vec256_shift_right64(m4, (uint32_t)40U);
#   59|       Lib_IntVector_Intrinsics_vec256 o0 = o5;
#   60|       Lib_IntVector_Intrinsics_vec256 o1 = o10;

Error: COMPILER_WARNING: [#def519]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:70:44: note[note]: called from here
#   68|       e[4U] = o4;
#   69|       uint64_t b1 = (uint64_t)0x1000000U;
#   70|->     Lib_IntVector_Intrinsics_vec256 mask = Lib_IntVector_Intrinsics_vec256_load64(b1);
#   71|       Lib_IntVector_Intrinsics_vec256 f40 = e[4U];
#   72|       e[4U] = Lib_IntVector_Intrinsics_vec256_or(f40, mask);

Error: COMPILER_WARNING: [#def520]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:72:13: note[note]: called from here
#   70|       Lib_IntVector_Intrinsics_vec256 mask = Lib_IntVector_Intrinsics_vec256_load64(b1);
#   71|       Lib_IntVector_Intrinsics_vec256 f40 = e[4U];
#   72|->     e[4U] = Lib_IntVector_Intrinsics_vec256_or(f40, mask);
#   73|       Lib_IntVector_Intrinsics_vec256 acc0 = acc[0U];
#   74|       Lib_IntVector_Intrinsics_vec256 acc1 = acc[1U];

Error: COMPILER_WARNING: [#def521]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:83:42: note[note]: called from here
#   81|       Lib_IntVector_Intrinsics_vec256 e3 = e[3U];
#   82|       Lib_IntVector_Intrinsics_vec256 e4 = e[4U];
#   83|->     Lib_IntVector_Intrinsics_vec256 r0 = Lib_IntVector_Intrinsics_vec256_zero;
#   84|       Lib_IntVector_Intrinsics_vec256 r1 = Lib_IntVector_Intrinsics_vec256_zero;
#   85|       Lib_IntVector_Intrinsics_vec256 r2 = Lib_IntVector_Intrinsics_vec256_zero;

Error: COMPILER_WARNING: [#def522]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:84:42: note[note]: called from here
#   82|       Lib_IntVector_Intrinsics_vec256 e4 = e[4U];
#   83|       Lib_IntVector_Intrinsics_vec256 r0 = Lib_IntVector_Intrinsics_vec256_zero;
#   84|->     Lib_IntVector_Intrinsics_vec256 r1 = Lib_IntVector_Intrinsics_vec256_zero;
#   85|       Lib_IntVector_Intrinsics_vec256 r2 = Lib_IntVector_Intrinsics_vec256_zero;
#   86|       Lib_IntVector_Intrinsics_vec256 r3 = Lib_IntVector_Intrinsics_vec256_zero;

Error: COMPILER_WARNING: [#def523]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:85:42: note[note]: called from here
#   83|       Lib_IntVector_Intrinsics_vec256 r0 = Lib_IntVector_Intrinsics_vec256_zero;
#   84|       Lib_IntVector_Intrinsics_vec256 r1 = Lib_IntVector_Intrinsics_vec256_zero;
#   85|->     Lib_IntVector_Intrinsics_vec256 r2 = Lib_IntVector_Intrinsics_vec256_zero;
#   86|       Lib_IntVector_Intrinsics_vec256 r3 = Lib_IntVector_Intrinsics_vec256_zero;
#   87|       Lib_IntVector_Intrinsics_vec256 r4 = Lib_IntVector_Intrinsics_vec256_zero;

Error: COMPILER_WARNING: [#def524]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:86:42: note[note]: called from here
#   84|       Lib_IntVector_Intrinsics_vec256 r1 = Lib_IntVector_Intrinsics_vec256_zero;
#   85|       Lib_IntVector_Intrinsics_vec256 r2 = Lib_IntVector_Intrinsics_vec256_zero;
#   86|->     Lib_IntVector_Intrinsics_vec256 r3 = Lib_IntVector_Intrinsics_vec256_zero;
#   87|       Lib_IntVector_Intrinsics_vec256 r4 = Lib_IntVector_Intrinsics_vec256_zero;
#   88|       Lib_IntVector_Intrinsics_vec256

Error: COMPILER_WARNING: [#def525]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:87:42: note[note]: called from here
#   85|       Lib_IntVector_Intrinsics_vec256 r2 = Lib_IntVector_Intrinsics_vec256_zero;
#   86|       Lib_IntVector_Intrinsics_vec256 r3 = Lib_IntVector_Intrinsics_vec256_zero;
#   87|->     Lib_IntVector_Intrinsics_vec256 r4 = Lib_IntVector_Intrinsics_vec256_zero;
#   88|       Lib_IntVector_Intrinsics_vec256
#   89|           r01 =

Error: COMPILER_WARNING: [#def526]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:90:13: note[note]: called from here
#   88|       Lib_IntVector_Intrinsics_vec256
#   89|           r01 =
#   90|->             Lib_IntVector_Intrinsics_vec256_insert64(r0,
#   91|                                                        Lib_IntVector_Intrinsics_vec256_extract64(acc0, (uint32_t)0U),
#   92|                                                        (uint32_t)0U);

Error: COMPILER_WARNING: [#def527]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:95:13: note[note]: called from here
#   93|       Lib_IntVector_Intrinsics_vec256
#   94|           r11 =
#   95|->             Lib_IntVector_Intrinsics_vec256_insert64(r1,
#   96|                                                        Lib_IntVector_Intrinsics_vec256_extract64(acc1, (uint32_t)0U),
#   97|                                                        (uint32_t)0U);

Error: COMPILER_WARNING: [#def528]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:100:13: note[note]: called from here
#   98|       Lib_IntVector_Intrinsics_vec256
#   99|           r21 =
#  100|->             Lib_IntVector_Intrinsics_vec256_insert64(r2,
#  101|                                                        Lib_IntVector_Intrinsics_vec256_extract64(acc2, (uint32_t)0U),
#  102|                                                        (uint32_t)0U);

Error: COMPILER_WARNING: [#def529]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:105:13: note[note]: called from here
#  103|       Lib_IntVector_Intrinsics_vec256
#  104|           r31 =
#  105|->             Lib_IntVector_Intrinsics_vec256_insert64(r3,
#  106|                                                        Lib_IntVector_Intrinsics_vec256_extract64(acc3, (uint32_t)0U),
#  107|                                                        (uint32_t)0U);

Error: COMPILER_WARNING: [#def530]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:110:13: note[note]: called from here
#  108|       Lib_IntVector_Intrinsics_vec256
#  109|           r41 =
#  110|->             Lib_IntVector_Intrinsics_vec256_insert64(r4,
#  111|                                                        Lib_IntVector_Intrinsics_vec256_extract64(acc4, (uint32_t)0U),
#  112|                                                        (uint32_t)0U);

Error: COMPILER_WARNING: [#def531]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:113:42: note[note]: called from here
#  111|                                                        Lib_IntVector_Intrinsics_vec256_extract64(acc4, (uint32_t)0U),
#  112|                                                        (uint32_t)0U);
#  113|->     Lib_IntVector_Intrinsics_vec256 f0 = Lib_IntVector_Intrinsics_vec256_add64(r01, e0);
#  114|       Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_add64(r11, e1);
#  115|       Lib_IntVector_Intrinsics_vec256 f2 = Lib_IntVector_Intrinsics_vec256_add64(r21, e2);

Error: COMPILER_WARNING: [#def532]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:114:42: note[note]: called from here
#  112|                                                        (uint32_t)0U);
#  113|       Lib_IntVector_Intrinsics_vec256 f0 = Lib_IntVector_Intrinsics_vec256_add64(r01, e0);
#  114|->     Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_add64(r11, e1);
#  115|       Lib_IntVector_Intrinsics_vec256 f2 = Lib_IntVector_Intrinsics_vec256_add64(r21, e2);
#  116|       Lib_IntVector_Intrinsics_vec256 f3 = Lib_IntVector_Intrinsics_vec256_add64(r31, e3);

Error: COMPILER_WARNING: [#def533]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:115:42: note[note]: called from here
#  113|       Lib_IntVector_Intrinsics_vec256 f0 = Lib_IntVector_Intrinsics_vec256_add64(r01, e0);
#  114|       Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_add64(r11, e1);
#  115|->     Lib_IntVector_Intrinsics_vec256 f2 = Lib_IntVector_Intrinsics_vec256_add64(r21, e2);
#  116|       Lib_IntVector_Intrinsics_vec256 f3 = Lib_IntVector_Intrinsics_vec256_add64(r31, e3);
#  117|       Lib_IntVector_Intrinsics_vec256 f4 = Lib_IntVector_Intrinsics_vec256_add64(r41, e4);

Error: COMPILER_WARNING: [#def534]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:116:42: note[note]: called from here
#  114|       Lib_IntVector_Intrinsics_vec256 f1 = Lib_IntVector_Intrinsics_vec256_add64(r11, e1);
#  115|       Lib_IntVector_Intrinsics_vec256 f2 = Lib_IntVector_Intrinsics_vec256_add64(r21, e2);
#  116|->     Lib_IntVector_Intrinsics_vec256 f3 = Lib_IntVector_Intrinsics_vec256_add64(r31, e3);
#  117|       Lib_IntVector_Intrinsics_vec256 f4 = Lib_IntVector_Intrinsics_vec256_add64(r41, e4);
#  118|       Lib_IntVector_Intrinsics_vec256 acc01 = f0;

Error: COMPILER_WARNING: [#def535]
nss-3.110/nss/lib/freebl/verified/Hacl_Poly1305_256.c:117:42: note[note]: called from here
#  115|       Lib_IntVector_Intrinsics_vec256 f2 = Lib_IntVector_Intrinsics_vec256_add64(r21, e2);
#  116|       Lib_IntVector_Intrinsics_vec256 f3 = Lib_IntVector_Intrinsics_vec256_add64(r31, e3);
#  117|->     Lib_IntVector_Intrinsics_vec256 f4 = Lib_IntVector_Intrinsics_vec256_add64(r41, e4);
#  118|       Lib_IntVector_Intrinsics_vec256 acc01 = f0;
#  119|       Lib_IntVector_Intrinsics_vec256 acc11 = f1;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def536]
nss-3.110/nss/lib/jar/jar.c:460:13: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘signer’
nss-3.110/nss/lib/jar/jar.c:322:1: enter_function: entry to ‘JAR_find_next’
nss-3.110/nss/lib/jar/jar.c:337:8: branch_false: following ‘false’ branch...
 branch_false: ...to here
nss-3.110/nss/lib/jar/jar.c:385:12: branch_false: following ‘false’ branch (when ‘list’ is non-NULL)...
nss-3.110/nss/lib/jar/jar.c:391:13: branch_false: ...to here
nss-3.110/nss/lib/jar/jar.c:391:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/jar/jar.c:407:13: branch_false: ...to here
nss-3.110/nss/lib/jar/jar.c:407:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/jar/jar.c:426:13: branch_false: ...to here
nss-3.110/nss/lib/jar/jar.c:426:12: branch_false: following ‘false’ branch...
 branch_false: ...to here
nss-3.110/nss/lib/jar/jar.c:433:16: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/jar/jar.c:441:16: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/jar/jar.c:445:21: branch_true: ...to here
nss-3.110/nss/lib/jar/jar.c:445:21: call_function: calling ‘jar_find_first_cert’ from ‘JAR_find_next’
#  458|   {
#  459|       ZZLink *link;
#  460|->     ZZList *list = signer->certs;
#  461|       int status = JAR_ERR_PNF;
#  462|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def537]
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:82:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:62:1: enter_function: entry to ‘pkix_ComCertSelParams_Duplicate’
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:68:32: release_memory: ‘paramsDuplicate’ is NULL
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:71:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:73:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:73:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:79:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:79:9: call_function: calling ‘PKIX_ComCertSelParams_Create’ from ‘pkix_ComCertSelParams_Duplicate’
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:79:9: return_function: returning to ‘pkix_ComCertSelParams_Duplicate’ from ‘PKIX_ComCertSelParams_Create’
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:79:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:82:24: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:82:24: release_memory: ‘paramsDuplicate’ is NULL
nss-3.110/nss/lib/libpkix/pkix/certsel/pkix_comcertselparams.c:82:9: danger: dereference of NULL ‘paramsDuplicate’
#   80|                       PKIX_COMCERTSELPARAMSCREATEFAILED);
#   81|   
#   82|->         paramsDuplicate->minPathLength = params->minPathLength;
#   83|           paramsDuplicate->matchAllSubjAltNames = params->matchAllSubjAltNames;
#   84|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def538]
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:307:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘state’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:284:1: enter_function: entry to ‘PKIX_EkuChecker_Create’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:289:26: release_memory: ‘state’ is NULL
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:293:9: branch_false: following ‘false’ branch (when ‘params’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:300:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:300:9: call_function: calling ‘pkix_EkuChecker_Create’ from ‘PKIX_EkuChecker_Create’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:300:9: return_function: returning to ‘PKIX_EkuChecker_Create’ from ‘pkix_EkuChecker_Create’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:300:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:304:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:304:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:307:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:307:9: release_memory: ‘state’ is NULL
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_ekuchecker.c:307:9: danger: dereference of NULL ‘state’
#  305|                       PKIX_LISTCREATEFAILED);
#  306|   
#  307|->         PKIX_CHECK(PKIX_List_AppendItem
#  308|                       (critExtOIDsList,
#  309|                       (PKIX_PL_Object *)state->ekuOID,

Error: GCC_ANALYZER_WARNING (CWE-476): [#def539]
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2761:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘polCheckerState’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2734:1: enter_function: entry to ‘pkix_PolicyChecker_Initialize’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2744:34: release_memory: ‘polCheckerState’ is NULL
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2747:9: branch_false: following ‘false’ branch (when ‘pChecker’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2749:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2749:9: call_function: calling ‘pkix_PolicyCheckerState_Create’ from ‘pkix_PolicyChecker_Initialize’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2749:9: return_function: returning to ‘pkix_PolicyChecker_Initialize’ from ‘pkix_PolicyCheckerState_Create’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2749:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2761:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2761:9: release_memory: ‘polCheckerState’ is NULL
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_policychecker.c:2761:9: danger: dereference of NULL ‘polCheckerState’
# 2759|   
# 2760|           /* Create the list of extensions that we handle */
# 2761|->         PKIX_CHECK(pkix_PolicyChecker_MakeSingleton
# 2762|                   ((PKIX_PL_Object *)(polCheckerState->certPoliciesExtension),
# 2763|                   PKIX_TRUE,

Error: GCC_ANALYZER_WARNING (CWE-476): [#def540]
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:91:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:50:1: enter_function: entry to ‘pkix_RevocationChecker_Duplicate’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:56:33: release_memory: ‘checkerDuplicate’ is NULL
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:61:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:63:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:63:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:69:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:69:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:76:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:76:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:84:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:84:9: call_function: calling ‘PKIX_RevocationChecker_Create’ from ‘pkix_RevocationChecker_Duplicate’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:84:9: return_function: returning to ‘pkix_RevocationChecker_Duplicate’ from ‘PKIX_RevocationChecker_Create’
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:84:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:91:25: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:91:25: release_memory: ‘checkerDuplicate’ is NULL
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:96:9: release_memory: ‘*pNewObject’ is NULL
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:96:9: release_memory: ‘*pNewObject’ is NULL
nss-3.110/nss/lib/libpkix/pkix/checker/pkix_revocationchecker.c:91:9: danger: dereference of NULL ‘checkerDuplicate’
#   89|               PKIX_REVOCATIONCHECKERCREATEFAILED);
#   90|   
#   91|->         checkerDuplicate->leafMethodList = dupLeafList;
#   92|           checkerDuplicate->chainMethodList = dupChainList;
#   93|           dupLeafList = NULL;

Error: GCC_ANALYZER_WARNING (CWE-457): [#def541]
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1078:21: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘numAnchors’
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:972:1: enter_function: entry to ‘PKIX_ValidateChain’
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1003:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1006:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1006:9: call_function: calling ‘pkix_ExtractParameters’ from ‘PKIX_ValidateChain’
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1006:9: return_function: returning to ‘PKIX_ValidateChain’ from ‘pkix_ExtractParameters’
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1006:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1023:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1023:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1027:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1027:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1073:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1073:9: branch_false: following ‘false’ branch...
 branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/top/pkix_validate.c:1078:21: danger: use of uninitialized value ‘numAnchors’ here
# 1076|   
# 1077|           /* try to validate the chain with each anchor */
# 1078|->         for (i = 0; i < numAnchors; i++){
# 1079|   
# 1080|                   /* get trust anchor */

Error: GCC_ANALYZER_WARNING (CWE-476): [#def542]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:456:17: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1179:1: enter_function: entry to ‘pkix_List_BubbleSort’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1185:20: release_memory: ‘sortedList’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1193:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1195:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1198:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1198:9: call_function: calling ‘pkix_List_Duplicate’ from ‘pkix_List_BubbleSort’
#  454|                               PKIX_LISTCREATEINTERNALFAILED);
#  455|   
#  456|->                 listDuplicate->length = list->length;
#  457|   
#  458|                   PKIX_INCREF(list->item);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def543]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1421:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1387:1: enter_function: entry to ‘PKIX_List_AppendItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1393:20: release_memory: ‘newElement’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1397:9: branch_false: following ‘false’ branch (when ‘list’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1399:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1399:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1403:14: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1403:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1407:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1416:9: call_function: calling ‘pkix_List_Create_Internal’ from ‘PKIX_List_AppendItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1416:9: return_function: returning to ‘PKIX_List_AppendItem’ from ‘pkix_List_Create_Internal’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1416:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1420:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1420:9: branch_false: following ‘false’ branch (when ‘item’ is NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1421:19: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1421:19: release_memory: ‘newElement’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1421:9: danger: dereference of NULL ‘newElement’
# 1419|   
# 1420|           PKIX_INCREF(item);
# 1421|->         newElement->item = item;
# 1422|   
# 1423|           PKIX_CHECK(PKIX_PL_Object_InvalidateCache

Error: GCC_ANALYZER_WARNING (CWE-476): [#def544]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:13: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1442:1: enter_function: entry to ‘PKIX_List_InsertItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1448:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1449:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1452:9: branch_false: following ‘false’ branch (when ‘list’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1455:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1455:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1459:14: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1459:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: call_function: calling ‘pkix_List_Create_Internal’ from ‘PKIX_List_InsertItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: return_function: returning to ‘PKIX_List_InsertItem’ from ‘pkix_List_Create_Internal’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1467:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1467:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1468:13: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1468:13: call_function: calling ‘pkix_List_GetElement’ from ‘PKIX_List_InsertItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1468:13: return_function: returning to ‘PKIX_List_InsertItem’ from ‘pkix_List_GetElement’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1468:13: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:36: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:20: release_memory: ‘newElem’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:20: release_memory: ‘newElem’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:13: danger: dereference of NULL ‘newElem’
# 1469|                          PKIX_LISTGETELEMENTFAILED);
# 1470|               /* Copy the old element's contents into the new element */
# 1471|->             newElem->item = element->item;
# 1472|               /* Add new item to the list */
# 1473|               PKIX_INCREF(item);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def545]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:29: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘element’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1442:1: enter_function: entry to ‘PKIX_List_InsertItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1448:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1449:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1452:9: branch_false: following ‘false’ branch (when ‘list’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1455:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1455:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1459:14: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1459:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: call_function: calling ‘pkix_List_Create_Internal’ from ‘PKIX_List_InsertItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: return_function: returning to ‘PKIX_List_InsertItem’ from ‘pkix_List_Create_Internal’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1467:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1467:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1468:13: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1468:13: call_function: calling ‘pkix_List_GetElement’ from ‘PKIX_List_InsertItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1468:13: return_function: returning to ‘PKIX_List_InsertItem’ from ‘pkix_List_GetElement’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1468:13: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:36: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:36: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1471:29: danger: dereference of NULL ‘element’
# 1469|                          PKIX_LISTGETELEMENTFAILED);
# 1470|               /* Copy the old element's contents into the new element */
# 1471|->             newElem->item = element->item;
# 1472|               /* Add new item to the list */
# 1473|               PKIX_INCREF(item);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def546]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1482:13: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1442:1: enter_function: entry to ‘PKIX_List_InsertItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1448:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1449:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1452:9: branch_false: following ‘false’ branch (when ‘list’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1455:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1455:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1459:14: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1459:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: call_function: calling ‘pkix_List_Create_Internal’ from ‘PKIX_List_InsertItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: return_function: returning to ‘PKIX_List_InsertItem’ from ‘pkix_List_Create_Internal’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1464:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1467:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1467:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1481:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1481:13: branch_false: following ‘false’ branch (when ‘item’ is NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1482:20: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1482:20: release_memory: ‘newElem’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1483:13: release_memory: ‘0’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1484:13: release_memory: ‘*list.next’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1485:13: release_memory: ‘newElem’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1483:13: release_memory: ‘0’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1484:13: release_memory: ‘*list.next’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1485:13: release_memory: ‘newElem’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1482:13: danger: dereference of NULL ‘newElem’
# 1480|           } else {
# 1481|               PKIX_INCREF(item);
# 1482|->             newElem->item = item;
# 1483|               newElem->next = NULL;
# 1484|               list->next = newElem;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def547]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1520:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘element’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1502:1: enter_function: entry to ‘PKIX_List_GetItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1508:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1511:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1513:14: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1513:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1517:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1517:9: call_function: calling ‘pkix_List_GetElement’ from ‘PKIX_List_GetItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1517:9: return_function: returning to ‘PKIX_List_GetItem’ from ‘pkix_List_GetElement’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1517:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1520:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1520:9: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1520:9: danger: dereference of NULL ‘element’
# 1518|                       PKIX_LISTGETELEMENTFAILED);
# 1519|   
# 1520|->         PKIX_INCREF(element->item);
# 1521|           *pItem = element->item;
# 1522|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def548]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1555:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘element’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1532:1: enter_function: entry to ‘PKIX_List_SetItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1538:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1541:9: branch_false: following ‘false’ branch (when ‘list’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1543:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1543:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1547:14: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1547:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1551:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1551:9: call_function: calling ‘pkix_List_GetElement’ from ‘PKIX_List_SetItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1551:9: return_function: returning to ‘PKIX_List_SetItem’ from ‘pkix_List_GetElement’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1551:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1555:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1555:9: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1555:9: danger: dereference of NULL ‘element’
# 1553|   
# 1554|           /* DecRef old contents */
# 1555|->         PKIX_DECREF(element->item);
# 1556|   
# 1557|           /* Set New Contents */

Error: GCC_ANALYZER_WARNING (CWE-476): [#def549]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1598:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘element’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1574:1: enter_function: entry to ‘PKIX_List_DeleteItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1579:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1580:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1584:9: branch_false: following ‘false’ branch (when ‘list’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1586:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1586:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1590:14: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1590:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1594:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1594:9: call_function: calling ‘pkix_List_GetElement’ from ‘PKIX_List_DeleteItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1594:9: return_function: returning to ‘PKIX_List_DeleteItem’ from ‘pkix_List_GetElement’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1594:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1598:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1598:9: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1598:9: danger: dereference of NULL ‘element’
# 1596|   
# 1597|           /* DecRef old contents */
# 1598|->         PKIX_DECREF(element->item);
# 1599|   
# 1600|           nextElement = element->next;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def550]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1623:17: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1574:1: enter_function: entry to ‘PKIX_List_DeleteItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1579:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1580:20: release_memory: ‘element’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1584:9: branch_false: following ‘false’ branch (when ‘list’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1586:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1586:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1590:14: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1590:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1594:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1594:9: call_function: calling ‘pkix_List_GetElement’ from ‘PKIX_List_DeleteItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1594:9: return_function: returning to ‘PKIX_List_DeleteItem’ from ‘pkix_List_GetElement’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1594:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1598:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1598:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1600:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1602:12: branch_false: following ‘false’ branch (when ‘nextElement’ is NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1616:20: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1616:20: branch_true: following ‘true’ branch (when ‘index != 0’)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1617:25: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1617:25: call_function: calling ‘pkix_List_GetElement’ from ‘PKIX_List_DeleteItem’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1617:25: return_function: returning to ‘PKIX_List_DeleteItem’ from ‘pkix_List_GetElement’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1617:25: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1623:28: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1623:28: release_memory: ‘prevElement’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1623:17: release_memory: ‘0’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1623:17: release_memory: ‘0’ is NULL
nss-3.110/nss/lib/libpkix/pkix/util/pkix_list.c:1623:17: danger: dereference of NULL ‘prevElement’
# 1621|                           prevElement = list;
# 1622|                   }
# 1623|->                 prevElement->next = NULL;
# 1624|   
# 1625|                   /* Delete the element */

Error: GCC_ANALYZER_WARNING (CWE-465): [#def551]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:941:21: warning[-Wanalyzer-deref-before-check]: check of ‘logger’ for NULL after already dereferencing it
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:861:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:866:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:874:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:876:12: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:876:12: branch_true: following ‘true’ branch (when ‘loggers’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:878:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:878:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:881:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:881:17: branch_false: following ‘false’ branch...
 branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:884:29: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:886:21: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:886:21: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:893:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:893:21: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:899:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:899:21: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:909:25: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:911:25: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:917:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:917:21: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:923:31: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:923:24: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:941:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:941:21: danger: pointer ‘logger’ is checked for NULL here but it was already dereferenced at [(23)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/22)
#  939|                                   PKIX_LISTAPPENDITEMFAILED);
#  940|                       }
#  941|->                     PKIX_DECREF(logger);
#  942|                       PKIX_DECREF(dupLogger);
#  943|   

Error: GCC_ANALYZER_WARNING (CWE-465): [#def552]
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1069:17: warning[-Wanalyzer-deref-before-check]: check of ‘addLogger’ for NULL after already dereferencing it
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:976:1: enter_function: entry to ‘PKIX_AddLogger’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:988:9: branch_false: following ‘false’ branch (when ‘logger’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:990:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:990:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:994:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1002:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1008:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1008:9: call_function: calling ‘pkix_Logger_Duplicate’ from ‘PKIX_AddLogger’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1008:9: return_function: returning to ‘PKIX_AddLogger’ from ‘pkix_Logger_Duplicate’
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1008:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1014:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1014:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1020:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1020:9: branch_false: following ‘false’ branch...
 branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1024:21: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1026:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1026:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1036:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1044:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1050:30: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1050:20: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1069:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix/util/pkix_logger.c:1069:17: danger: pointer ‘addLogger’ is checked for NULL here but it was already dereferenced at [(29)](sarif:/runs/0/results/1/codeFlows/0/threadFlows/0/locations/28)
# 1067|                   }
# 1068|   
# 1069|->                 PKIX_DECREF(addLogger);
# 1070|   
# 1071|           }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def553]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:371:19: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘hcv1’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:567:1: enter_function: entry to ‘PKIX_PL_AIAMgr_GetAIACerts’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:582:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:588:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:613:14: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:614:17: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:616:29: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:618:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:625:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:625:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:629:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:629:20: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:635:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:635:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:639:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:639:20: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:640:25: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:640:25: call_function: calling ‘pkix_pl_AIAMgr_GetHTTPCerts’ from ‘PKIX_PL_AIAMgr_GetAIACerts’
#  369|           if (PKIX_ERROR_RECEIVED) {
#  370|               if (aiaMgr->client.hdata.requestSession != NULL) {
#  371|->                 (*hcv1->freeFcn)(aiaMgr->client.hdata.requestSession);
#  372|                   aiaMgr->client.hdata.requestSession = NULL;
#  373|               }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def554]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:375:19: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘hcv1’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:567:1: enter_function: entry to ‘PKIX_PL_AIAMgr_GetAIACerts’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:582:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:588:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:613:14: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:614:17: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:616:29: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:618:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:625:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:625:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:629:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:629:20: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:635:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:635:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:639:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:639:20: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:640:25: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_aiamgr.c:640:25: call_function: calling ‘pkix_pl_AIAMgr_GetHTTPCerts’ from ‘PKIX_PL_AIAMgr_GetAIACerts’
#  373|               }
#  374|               if (aiaMgr->client.hdata.serverSession != NULL) {
#  375|->                 (*hcv1->freeSessionFcn)(aiaMgr->client.hdata.serverSession);
#  376|                   aiaMgr->client.hdata.serverSession = NULL;
#  377|               }

Error: GCC_ANALYZER_WARNING (CWE-465): [#def555]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1111:17: warning[-Wanalyzer-deref-before-check]: check of ‘colCertStoreContext’ for NULL after already dereferencing it
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1086:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1090:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1096:32: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1096:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1098:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1098:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1098:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1105:20: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1111:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1111:17: danger: pointer ‘colCertStoreContext’ is checked for NULL here but it was already dereferenced at [(9)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/8)
# 1109|                   }
# 1110|   
# 1111|->                 PKIX_OBJECT_UNLOCK(colCertStoreContext);
# 1112|           }
# 1113|   

Error: GCC_ANALYZER_WARNING (CWE-465): [#def556]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1192:17: warning[-Wanalyzer-deref-before-check]: check of ‘colCertStoreContext’ for NULL after already dereferencing it
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1167:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1171:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1177:32: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1177:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1179:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1179:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1179:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1186:20: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1192:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_colcertstore.c:1192:17: danger: pointer ‘colCertStoreContext’ is checked for NULL here but it was already dereferenced at [(9)](sarif:/runs/0/results/1/codeFlows/0/threadFlows/0/locations/8)
# 1190|                   }
# 1191|   
# 1192|->                 PKIX_OBJECT_UNLOCK(colCertStoreContext);
# 1193|   
# 1194|           }

Error: GCC_ANALYZER_WARNING (CWE-457): [#def557]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:629:22: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘requestParams.nc’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:565:1: enter_function: entry to ‘pkix_pl_LdapCertStore_GetCert’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:586:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:601:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:605:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:605:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:613:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:613:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:617:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:617:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:621:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:621:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:622:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:622:17: call_function: calling ‘pkix_pl_LdapCertStore_MakeNameAVAList’ from ‘pkix_pl_LdapCertStore_GetCert’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:622:17: return_function: returning to ‘pkix_pl_LdapCertStore_GetCert’ from ‘pkix_pl_LdapCertStore_MakeNameAVAList’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:622:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:629:22: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:629:22: danger: use of uninitialized value ‘requestParams.nc’ here
#  627|                           PKIX_LDAPCERTSTOREMAKENAMEAVALISTFAILED);
#  628|   
#  629|->                 if (*requestParams.nc == NULL) {
#  630|                           /*
#  631|                            * The subjectName may not include any components

Error: GCC_ANALYZER_WARNING (CWE-457): [#def558]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:899:30: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘requestParams.nc’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:822:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:852:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:856:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:856:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:860:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:860:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:870:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:870:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:872:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:872:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:876:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:876:20: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:882:25: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:882:25: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:889:25: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:889:25: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:897:25: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:897:25: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:899:30: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.c:899:30: danger: use of uninitialized value ‘requestParams.nc’ here
#  897|                           PKIX_DECREF(issuer);
#  898|   
#  899|->                         if (*requestParams.nc == NULL) {
#  900|                                   /*
#  901|                                           * The issuer may not include any

Error: GCC_ANALYZER_WARNING (CWE-476): [#def559]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:372:21: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘msg.protocolOp.op.bindMsg.version.data’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2381:1: enter_function: entry to ‘pkix_pl_LdapDefaultClient_ResumeRequest’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2391:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2393:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2401:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2401:9: call_function: calling ‘pkix_pl_LdapDefaultClient_Dispatch’ from ‘pkix_pl_LdapDefaultClient_ResumeRequest’
#  370|   
#  371|           if (rv == SECSuccess) {
#  372|->                 if (*(ldapBindResponse->resultCode.data) == SUCCESS) {
#  373|                           client->connectStatus = BOUND;
#  374|                   } else {

Error: GCC_ANALYZER_WARNING (CWE-476): [#def560]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:1195:35: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘encoded’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2381:1: enter_function: entry to ‘pkix_pl_LdapDefaultClient_ResumeRequest’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2391:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2393:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2401:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2401:9: call_function: calling ‘pkix_pl_LdapDefaultClient_Dispatch’ from ‘pkix_pl_LdapDefaultClient_ResumeRequest’
# 1193|                           plContext),
# 1194|                           PKIX_LDAPDEFAULTCLIENTMAKEBINDFAILED);
# 1195|->                 client->bindMsg = encoded->data;
# 1196|                   client->bindMsgLen = encoded->len;
# 1197|           }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def561]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2470:17: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘encoded’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2456:18: release_memory: ‘encoded’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2459:9: branch_false: following ‘false’ branch (when ‘client’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2461:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2461:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2462:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2462:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2469:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2470:17: release_memory: ‘encoded’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c:2470:17: danger: dereference of NULL ‘encoded’
# 2468|   
# 2469|                   callbackList = (PKIX_PL_Socket_Callback *)(client->callbackList);
# 2470|->                 PKIX_CHECK(callbackList->sendCallback
# 2471|                           (client->clientSocket,
# 2472|                           encoded->data,

Error: GCC_ANALYZER_WARNING (CWE-465): [#def562]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:444:9: warning[-Wanalyzer-deref-before-check]: check of ‘dp’ for NULL after already dereferencing it
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:399:5: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:402:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:402:8: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:413:11: branch_true: following ‘true’ branch (when ‘hasFetchedCrlInCache == 0’)...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:413:33: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:413:11: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:414:34: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:413:11: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:417:13: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:419:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:423:15: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:423:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:425:13: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:444:9: danger: pointer ‘dp’ is checked for NULL here but it was already dereferenced at [(13)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/12)
#  442|               }
#  443|           }
#  444|->         PKIX_DECREF(dp);
#  445|       }
#  446|   cleanup:

Error: GCC_ANALYZER_WARNING (CWE-465): [#def563]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:748:9: warning[-Wanalyzer-deref-before-check]: check of ‘dp’ for NULL after already dereferencing it
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:683:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:692:5: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:694:10: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:695:8: branch_false: following ‘false’ branch...
 branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:699:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:703:9: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:703:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:707:16: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:707:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:710:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:710:16: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:712:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:740:12: branch_false: following ‘false’ branch (when ‘removeDp == 0’)...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:746:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:748:9: danger: pointer ‘dp’ is checked for NULL here but it was already dereferenced at [(11)](sarif:/runs/0/results/2/codeFlows/0/threadFlows/0/locations/10)
#  746|               dpIndex += 1;
#  747|           }
#  748|->         PKIX_DECREF(dp);
#  749|       }
#  750|   

Error: GCC_ANALYZER_WARNING (CWE-457): [#def564]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:882:17: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘myHttpResponseDataLen’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:787:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:788:10: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:787:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:791:5: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:796:16: branch_false: following ‘false’ branch (when ‘derGenName’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:797:18: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:808:16: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:810:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:872:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:882:17: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_pk11certstore.c:882:17: danger: use of uninitialized value ‘myHttpResponseDataLen’ here
#  880|           derGenName = *dp->nssdp->derFullName;
#  881|       } else {
#  882|->         SECItem derCrl = { siBuffer,
#  883|                              (void*)myHttpResponseData,
#  884|                              myHttpResponseDataLen };

Error: GCC_ANALYZER_WARNING (CWE-476): [#def565]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:764:17: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:728:1: enter_function: entry to ‘pkix_pl_CRLEntry_Create’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:734:27: release_memory: ‘crlEntry’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:742:9: branch_false: following ‘false’ branch (when ‘pCrlEntryList’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:746:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:746:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:749:12: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:749:12: branch_true: following ‘true’ branch (when ‘nssCrlEntries’ is non-NULL)...
 branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:750:20: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:751:17: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:751:17: call_function: calling ‘pkix_pl_CRLEntry_CreateEntry’ from ‘pkix_pl_CRLEntry_Create’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:751:17: return_function: returning to ‘pkix_pl_CRLEntry_Create’ from ‘pkix_pl_CRLEntry_CreateEntry’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:751:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:756:36: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:760:17: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:764:25: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:764:25: release_memory: ‘crlEntry’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_crlentry.c:764:17: danger: dereference of NULL ‘crlEntry’
#  762|                               PKIX_BIGINTCREATEWITHBYTESFAILED);
#  763|   
#  764|->                 crlEntry->serialNumber = serialNumber;
#  765|                   crlEntry->nssCrlEntry = *entries;
#  766|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def566]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:849:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:802:1: enter_function: entry to ‘pkix_pl_CertNameConstraints_Create’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:807:38: release_memory: ‘nameConstraints’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:813:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:817:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:823:18: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:826:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:830:13: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:830:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:845:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:845:9: call_function: calling ‘pkix_pl_CertNameConstraints_Create_Helper’ from ‘pkix_pl_CertNameConstraints_Create’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:845:9: return_function: returning to ‘pkix_pl_CertNameConstraints_Create’ from ‘pkix_pl_CertNameConstraints_Create_Helper’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:845:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:849:24: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:849:24: release_memory: ‘nameConstraints’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:851:9: release_memory: ‘*pNameConstraints’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:851:9: release_memory: ‘*pNameConstraints’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:849:9: danger: dereference of NULL ‘nameConstraints’
#  847|                       PKIX_CERTNAMECONSTRAINTSCREATEHELPERFAILED);
#  848|   
#  849|->         nameConstraints->arena = arena;
#  850|   
#  851|           *pNameConstraints = nameConstraints;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def567]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1121:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘nameConstraints’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1095:1: enter_function: entry to ‘pkix_pl_CertNameConstraints_Merge’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1101:38: release_memory: ‘nameConstraints’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1109:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1111:9: call_function: calling ‘pkix_pl_CertNameConstraints_CreateByMerge’ from ‘pkix_pl_CertNameConstraints_Merge’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1111:9: return_function: returning to ‘pkix_pl_CertNameConstraints_Merge’ from ‘pkix_pl_CertNameConstraints_CreateByMerge’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1111:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1117:23: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1121:9: release_memory: ‘nameConstraints’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1121:9: release_memory: ‘nameConstraints’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/pki/pkix_pl_nameconstraints.c:1121:9: danger: dereference of NULL ‘nameConstraints’
# 1119|   
# 1120|           /* Free the default space (only one entry) allocated by create */
# 1121|->         PKIX_CHECK(PKIX_PL_Free
# 1122|                       (nameConstraints->nssNameConstraintsList, plContext),
# 1123|                       PKIX_FREEFAILED);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def568]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:164:13: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘objectHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1270:1: enter_function: entry to ‘PKIX_PL_Object_InvalidateCache’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1274:25: release_memory: ‘objectHeader’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1277:9: branch_false: following ‘false’ branch (when ‘object’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: call_function: calling ‘pkix_pl_Object_GetHeader’ from ‘PKIX_PL_Object_InvalidateCache’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: return_function: returning to ‘PKIX_PL_Object_InvalidateCache’ from ‘pkix_pl_Object_GetHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1283:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1283:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1287:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1290:9: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1290:9: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1290:9: call_function: calling ‘PKIX_PL_Object_DecRef’ from ‘PKIX_PL_Object_InvalidateCache’
#  162|   
#  163|           /* Attempt to delete an object still being used */
#  164|->         if (objectHeader->references != 0) {
#  165|                   PKIX_ERROR_FATAL(PKIX_OBJECTSTILLREFERENCED);
#  166|           }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def569]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:853:25: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘objectHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1270:1: enter_function: entry to ‘PKIX_PL_Object_InvalidateCache’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1274:25: release_memory: ‘objectHeader’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1277:9: branch_false: following ‘false’ branch (when ‘object’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: call_function: calling ‘pkix_pl_Object_GetHeader’ from ‘PKIX_PL_Object_InvalidateCache’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: return_function: returning to ‘PKIX_PL_Object_InvalidateCache’ from ‘pkix_pl_Object_GetHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1283:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1283:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1287:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1290:9: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1290:9: branch_true: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1290:9: call_function: calling ‘PKIX_PL_Object_DecRef’ from ‘PKIX_PL_Object_InvalidateCache’
#  851|               PKIX_PL_DestructorCallback destructor = NULL;
#  852|               pkix_ClassTable_Entry *ctEntry = NULL;
#  853|->             PKIX_UInt32 objType = objectHeader->type;
#  854|               
#  855|               /* first, special handling for system types */

Error: GCC_ANALYZER_WARNING (CWE-476): [#def570]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1190:14: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘objectHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1172:1: enter_function: entry to ‘PKIX_PL_Object_ToString’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1177:25: release_memory: ‘objectHeader’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1183:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1186:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1186:9: call_function: calling ‘pkix_pl_Object_GetHeader’ from ‘PKIX_PL_Object_ToString’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1186:9: return_function: returning to ‘PKIX_PL_Object_ToString’ from ‘pkix_pl_Object_GetHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1186:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1190:26: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1190:26: release_memory: ‘objectHeader’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1190:14: danger: dereference of NULL ‘objectHeader’
# 1188|   
# 1189|           /* if we don't have a cached copy from before, we create one */
# 1190|->         if (!objectHeader->stringRep){
# 1191|   
# 1192|                   PKIX_UInt32 objType = objectHeader->type;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def571]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1287:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1270:1: enter_function: entry to ‘PKIX_PL_Object_InvalidateCache’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1274:25: release_memory: ‘objectHeader’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1277:9: branch_false: following ‘false’ branch (when ‘object’ is non-NULL)...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: call_function: calling ‘pkix_pl_Object_GetHeader’ from ‘PKIX_PL_Object_InvalidateCache’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: return_function: returning to ‘PKIX_PL_Object_InvalidateCache’ from ‘pkix_pl_Object_GetHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1280:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1283:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1283:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1287:21: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1287:21: release_memory: ‘objectHeader’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1287:9: danger: dereference of NULL ‘objectHeader’
# 1285|   
# 1286|           /* invalidate hashcode */
# 1287|->         objectHeader->hashcode = 0;
# 1288|           objectHeader->hashcodeCached = PKIX_FALSE;
# 1289|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def572]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1329:9: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘firstObjectHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1304:1: enter_function: entry to ‘PKIX_PL_Object_Compare’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1310:25: release_memory: ‘firstObjectHeader’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1317:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1320:9: call_function: calling ‘pkix_pl_Object_GetHeader’ from ‘PKIX_PL_Object_Compare’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1320:9: return_function: returning to ‘PKIX_PL_Object_Compare’ from ‘pkix_pl_Object_GetHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1320:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1325:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1325:9: call_function: calling ‘pkix_pl_Object_GetHeader’ from ‘PKIX_PL_Object_Compare’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1325:9: return_function: returning to ‘PKIX_PL_Object_Compare’ from ‘pkix_pl_Object_GetHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1325:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1329:36: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1329:36: release_memory: ‘firstObjectHeader’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1329:9: danger: dereference of NULL ‘firstObjectHeader’
# 1327|                       PKIX_RECEIVEDCORRUPTEDOBJECTARGUMENT);
# 1328|   
# 1329|->         objType = firstObjectHeader->type;
# 1330|   
# 1331|           if (objType >= PKIX_NUMTYPES){

Error: GCC_ANALYZER_WARNING (CWE-476): [#def573]
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1435:18: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘objectHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1421:1: enter_function: entry to ‘PKIX_PL_Object_GetType’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1426:25: release_memory: ‘objectHeader’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1429:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1432:9: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1432:9: call_function: calling ‘pkix_pl_Object_GetHeader’ from ‘PKIX_PL_Object_GetType’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1432:9: return_function: returning to ‘PKIX_PL_Object_GetType’ from ‘pkix_pl_Object_GetHeader’
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1432:9: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1435:30: branch_false: ...to here
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1435:30: release_memory: ‘objectHeader’ is NULL
nss-3.110/nss/lib/libpkix/pkix_pl_nss/system/pkix_pl_object.c:1435:18: danger: dereference of NULL ‘objectHeader’
# 1433|                       PKIX_RECEIVEDCORRUPTEDOBJECTARGUMENT);
# 1434|   
# 1435|->         *pType = objectHeader->type;
# 1436|   
# 1437|   cleanup:

Error: GCC_ANALYZER_WARNING (CWE-775): [#def574]
nss-3.110/nss/lib/pk11wrap/debug_module.c:3454:1: warning[-Wanalyzer-file-leak]: leak of FILE ‘outfile’
nss-3.110/nss/lib/pk11wrap/debug_module.c:3408:8: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/pk11wrap/debug_module.c:3410:19: branch_true: ...to here
nss-3.110/nss/lib/pk11wrap/debug_module.c:3410:19: acquire_resource: opened here
nss-3.110/nss/lib/pk11wrap/debug_module.c:3412:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/pk11wrap/debug_module.c:3416:5: branch_false: ...to here
nss-3.110/nss/lib/pk11wrap/debug_module.c:3451:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/pk11wrap/debug_module.c:3454:1: branch_false: ...to here
nss-3.110/nss/lib/pk11wrap/debug_module.c:3454:1: danger: ‘outfile’ leaks here; was opened at [(3)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/2)
# 3452|           fclose(outfile);
# 3453|       }
# 3454|-> }

Error: GCC_ANALYZER_WARNING (CWE-401): [#def575]
nss-3.110/nss/lib/pk11wrap/debug_module.c:3454:1: warning[-Wanalyzer-malloc-leak]: leak of ‘outfile’
nss-3.110/nss/lib/pk11wrap/debug_module.c:3408:8: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/pk11wrap/debug_module.c:3410:19: branch_true: ...to here
nss-3.110/nss/lib/pk11wrap/debug_module.c:3410:19: acquire_memory: allocated here
nss-3.110/nss/lib/pk11wrap/debug_module.c:3412:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/pk11wrap/debug_module.c:3416:5: branch_false: ...to here
nss-3.110/nss/lib/pk11wrap/debug_module.c:3451:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/pk11wrap/debug_module.c:3454:1: branch_false: ...to here
nss-3.110/nss/lib/pk11wrap/debug_module.c:3454:1: danger: ‘outfile’ leaks here; was allocated at [(3)](sarif:/runs/0/results/1/codeFlows/0/threadFlows/0/locations/2)
# 3452|           fclose(outfile);
# 3453|       }
# 3454|-> }

Error: CPPCHECK_WARNING (CWE-909): [#def576]
nss-3.110/nss/lib/pkcs7/p7decode.c:1655: error[uninitStructMember]: Uninitialized struct member: holder.len
# 1653|           if (sigkey != NULL) {
# 1654|               PORT_Assert(sig == &holder);
# 1655|->             PORT_ZFree(holder.data, holder.len);
# 1656|           }
# 1657|       }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def577]
nss-3.110/nss/lib/pki/pki3hack.c:1494:5: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘0’
nss-3.110/nss/lib/pki/pki3hack.c:1490:1: enter_function: entry to ‘cert_dump_iter’
nss-3.110/nss/lib/pki/pki3hack.c:1493:29: call_function: calling ‘STAN_GetCERTCertificate’ from ‘cert_dump_iter’
nss-3.110/nss/lib/pki/pki3hack.c:1493:29: return_function: returning to ‘cert_dump_iter’ from ‘STAN_GetCERTCertificate’
nss-3.110/nss/lib/pki/pki3hack.c:1494:5: danger: dereference of NULL ‘STAN_GetCERTCertificate(k)’
# 1492|       NSSCertificate *c = (NSSCertificate *)k;
# 1493|       CERTCertificate *cert = STAN_GetCERTCertificate(c);
# 1494|->     printf("[%2d] \"%s\"\n", c->object.refCount, cert->subjectName);
# 1495|   }
# 1496|   

Error: GCC_ANALYZER_WARNING (CWE-457): [#def578]
nss-3.110/nss/lib/softoken/pkcs11c.c:8908:17: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘secret’
nss-3.110/nss/lib/softoken/pkcs11c.c:7541:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7544:8: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7544:8: branch_false: following ‘false’ branch (when ‘pMechanism’ is non-NULL)...
nss-3.110/nss/lib/softoken/pkcs11c.c:7547:23: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7557:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7560:14: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7565:17: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7566:42: branch_true: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7567:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7570:13: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7570:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7571:39: branch_true: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7573:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7565:44: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7565:17: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7566:42: branch_true: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7567:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7570:13: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7573:12: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7574:36: branch_true: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7577:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7582:8: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7582:8: branch_false: following ‘false’ branch (when ‘keySize != 0’)...
nss-3.110/nss/lib/softoken/pkcs11c.c:7586:5: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7615:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7621:15: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7622:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7627:17: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7632:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7637:8: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7637:8: branch_true: following ‘true’ branch (when ‘extractValue != 0’)...
nss-3.110/nss/lib/softoken/pkcs11c.c:7639:15: branch_true: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:7640:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:7646:19: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:8827:16: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:8828:19: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:8836:16: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:8841:47: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:8849:16: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:8866:16: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:8874:16: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:8878:16: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:8878:16: branch_false: following ‘false’ branch (when ‘arena’ is NULL)...
nss-3.110/nss/lib/softoken/pkcs11c.c:8883:16: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:8883:16: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:8891:17: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:8891:16: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:8900:17: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:8905:20: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/pkcs11c.c:8908:17: branch_false: ...to here
nss-3.110/nss/lib/softoken/pkcs11c.c:8908:17: danger: use of uninitialized value ‘secret’ here
# 8906|                       break;
# 8907|                   }
# 8908|->                 tmp.data = secret;
# 8909|                   tmp.len = secretlen;
# 8910|               }

Error: CPPCHECK_WARNING (CWE-190): [#def579]
nss-3.110/nss/lib/softoken/pkcs11u.c:1308: error[integerOverflow]: Signed integer overflow for expression '0-1'.
# 1306|       if (so) {
# 1307|           PZ_Lock(session->objectLock);
# 1308|->         sftkqueue_add(&so->sessionList, 0, session->objects, 0);
# 1309|           so->session = session;
# 1310|           PZ_Unlock(session->objectLock);

Error: CPPCHECK_WARNING (CWE-190): [#def580]
nss-3.110/nss/lib/softoken/pkcs11u.c:1331: error[integerOverflow]: Signed integer overflow for expression '0-1'.
# 1329|           session = so->session;
# 1330|           PZ_Lock(session->objectLock);
# 1331|->         sftkqueue_delete(&so->sessionList, 0, session->objects, 0);
# 1332|           PZ_Unlock(session->objectLock);
# 1333|           PZ_Lock(slot->objectLock);

Error: CPPCHECK_WARNING (CWE-758): [#def581]
nss-3.110/nss/lib/softoken/pkcs11u.c:2140: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 2138|   {
# 2139|       PR_STATIC_ASSERT(CKR_OK == 0);
# 2140|->     return ~PORT_CT_NOT_ZERO(rv);
# 2141|   }
# 2142|   

Error: CPPCHECK_WARNING (CWE-758): [#def582]
nss-3.110/nss/lib/softoken/pkcs11u.c:2154: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 2152|   
# 2153|       /* If padSize <= blockSize, set goodPad to all-1s and all-0s otherwise.*/
# 2154|->     unsigned int goodPad = PORT_CT_DUPLICATE_MSB_TO_ALL(~(blockSize - padSize));
# 2155|       /* padSize should not be 0 */
# 2156|       goodPad &= PORT_CT_NOT_ZERO(padSize);

Error: CPPCHECK_WARNING (CWE-758): [#def583]
nss-3.110/nss/lib/softoken/pkcs11u.c:2156: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 2154|       unsigned int goodPad = PORT_CT_DUPLICATE_MSB_TO_ALL(~(blockSize - padSize));
# 2155|       /* padSize should not be 0 */
# 2156|->     goodPad &= PORT_CT_NOT_ZERO(padSize);
# 2157|   
# 2158|       unsigned int i;

Error: CPPCHECK_WARNING (CWE-758): [#def584]
nss-3.110/nss/lib/softoken/pkcs11u.c:2161: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 2159|       for (i = 0; i < blockSize; i++) {
# 2160|           /* If i < padSize, set loopMask to all-1s and all-0s otherwise.*/
# 2161|->         unsigned int loopMask = PORT_CT_DUPLICATE_MSB_TO_ALL(~(padSize - 1 - i));
# 2162|           /* Get the padding value (should be padSize) from buffer */
# 2163|           unsigned int padVal = pBuf[bufLen - 1 - i];

Error: CPPCHECK_WARNING (CWE-758): [#def585]
nss-3.110/nss/lib/softoken/pkcs11u.c:2175: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 2173|       goodPad &= goodPad >> 1;
# 2174|       goodPad <<= sizeof(goodPad) * 8 - 1;
# 2175|->     goodPad = PORT_CT_DUPLICATE_MSB_TO_ALL(goodPad);
# 2176|   
# 2177|       /* Set outPadSize to padSize or 0 */

Error: GCC_ANALYZER_WARNING (CWE-401): [#def586]
nss-3.110/nss/lib/softoken/sdb.c:2257:21: warning[-Wanalyzer-malloc-leak]: leak of ‘<unknown>’
nss-3.110/nss/lib/softoken/sdb.c:1982:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/sdb.c:1986:14: branch_false: ...to here
nss-3.110/nss/lib/softoken/sdb.c:1987:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/sdb.c:1998:8: branch_false: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2190:8: branch_false: following ‘false’ branch (when ‘enableCache == 0’)...
nss-3.110/nss/lib/softoken/sdb.c:2210:18: branch_false: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2211:8: branch_false: following ‘false’ branch (when ‘sdb’ is non-NULL)...
nss-3.110/nss/lib/softoken/sdb.c:2215:27: branch_false: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2216:8: branch_false: following ‘false’ branch (when ‘sdb_p’ is non-NULL)...
nss-3.110/nss/lib/softoken/sdb.c:2224:5: branch_false: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2233:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/sdb.c:2237:18: branch_false: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2240:12: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/softoken/sdb.c:2244:30: branch_false: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2244:30: acquire_memory: allocated here
nss-3.110/nss/lib/softoken/sdb.c:2245:12: branch_false: following ‘false’ branch...
 branch_false: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2254:16: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/softoken/sdb.c:2255:20: branch_true: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2255:20: branch_false: following ‘false’ branch (when ‘backedAttrs != schemaAttrsCapacity’)...
nss-3.110/nss/lib/softoken/sdb.c:2265:37: branch_false: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2271:18: branch_true: following ‘true’ branch...
 branch_true: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2254:16: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/softoken/sdb.c:2255:20: branch_true: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2255:20: branch_true: following ‘true’ branch (when ‘backedAttrs == schemaAttrsCapacity’)...
nss-3.110/nss/lib/softoken/sdb.c:2256:21: branch_true: ...to here
nss-3.110/nss/lib/softoken/sdb.c:2257:21: danger: ‘<unknown>’ leaks here; was allocated at [(15)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/14)
# 2255|                   if (backedAttrs == schemaAttrsCapacity) {
# 2256|                       schemaAttrsCapacity += known_attributes_size;
# 2257|->                     sdb_p->schemaAttrs = realloc(sdb_p->schemaAttrs,
# 2258|                                                    schemaAttrsCapacity * sizeof(CK_ATTRIBUTE_TYPE));
# 2259|                       if (!sdb_p->schemaAttrs) {

Error: CPPCHECK_WARNING (CWE-758): [#def587]
nss-3.110/nss/lib/ssl/ssl3con.c:12979: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#12977|   SECStatusToMask(SECStatus rv)
#12978|   {
#12979|->     return PORT_CT_EQ(rv, SECSuccess);
#12980|   }
#12981|   

Error: CPPCHECK_WARNING (CWE-758): [#def588]
nss-3.110/nss/lib/ssl/ssl3con.c:12986: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#12984|   ssl_ConstantTimeGE(unsigned int a, unsigned int b)
#12985|   {
#12986|->     return PORT_CT_GE(a, b);
#12987|   }
#12988|   

Error: CPPCHECK_WARNING (CWE-758): [#def589]
nss-3.110/nss/lib/ssl/ssl3con.c:12993: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#12991|   ssl_ConstantTimeEQ(unsigned char a, unsigned char b)
#12992|   {
#12993|->     return PORT_CT_EQ(a, b);
#12994|   }
#12995|   

Error: CPPCHECK_WARNING (CWE-758): [#def590]
nss-3.110/nss/lib/ssl/ssl3con.c:13019: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#13017|       paddingLength = plaintext->buf[plaintext->len - 1];
#13018|       /* SSLv3 padding bytes are random and cannot be checked. */
#13019|->     good = PORT_CT_GE(plaintext->len, paddingLength + overhead);
#13020|       /* SSLv3 requires that the padding is minimal. */
#13021|       good &= PORT_CT_GE(blockSize, paddingLength + 1);

Error: CPPCHECK_WARNING (CWE-758): [#def591]
nss-3.110/nss/lib/ssl/ssl3con.c:13021: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#13019|       good = PORT_CT_GE(plaintext->len, paddingLength + overhead);
#13020|       /* SSLv3 requires that the padding is minimal. */
#13021|->     good &= PORT_CT_GE(blockSize, paddingLength + 1);
#13022|       plaintext->len -= good & (paddingLength + 1);
#13023|       return (good & SECSuccess) | (~good & SECFailure);

Error: CPPCHECK_WARNING (CWE-758): [#def592]
nss-3.110/nss/lib/ssl/ssl3con.c:13039: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#13037|   
#13038|       paddingLength = plaintext->buf[plaintext->len - 1];
#13039|->     good = PORT_CT_GE(plaintext->len, paddingLength + overhead);
#13040|   
#13041|       /* The padding consists of a length byte at the end of the record and then

Error: CPPCHECK_WARNING (CWE-758): [#def593]
nss-3.110/nss/lib/ssl/ssl3con.c:13058: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#13056|           /* If i <= paddingLength then the MSB of t is zero and mask is
#13057|            * 0xff.  Otherwise, mask is 0. */
#13058|->         unsigned char mask = PORT_CT_LE(i, paddingLength);
#13059|           unsigned char b = plaintext->buf[plaintext->len - 1 - i];
#13060|           /* The final |paddingLength+1| bytes should all have the value

Error: CPPCHECK_WARNING (CWE-758): [#def594]
nss-3.110/nss/lib/ssl/ssl3con.c:13073: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
#13071|       good &= good >> 1;
#13072|       good <<= sizeof(good) * 8 - 1;
#13073|->     good = PORT_CT_DUPLICATE_MSB_TO_ALL(good);
#13074|   
#13075|       plaintext->len -= good & (paddingLength + 1);

Error: CPPCHECK_WARNING (CWE-457): [#def595]
nss-3.110/nss/lib/ssl/ssl3con.c:14064: warning[uninitvar]: Uninitialized variable: schemes
#14062|           schemes[i] = (algorithms[i].hashAlg << 8) | algorithms[i].sigAlg;
#14063|       }
#14064|->     return SSL_SignatureSchemePrefSet(fd, schemes, count);
#14065|   }
#14066|   

Error: GCC_ANALYZER_WARNING (CWE-457): [#def596]
nss-3.110/nss/lib/ssl/sslinfo.c:117:5: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘&inf’
nss-3.110/nss/lib/ssl/sslinfo.c:23:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslinfo.c:29:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslinfo.c:35:5: branch_false: ...to here
nss-3.110/nss/lib/ssl/sslinfo.c:117:5: danger: use of uninitialized value ‘&inf’ here
#  115|       }
#  116|   
#  117|->     memcpy(info, &inf, inf.length);
#  118|   
#  119|       return SECSuccess;

Error: GCC_ANALYZER_WARNING (CWE-457): [#def597]
nss-3.110/nss/lib/ssl/sslinfo.c:185:5: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘&inf’
nss-3.110/nss/lib/ssl/sslinfo.c:133:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslinfo.c:139:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslinfo.c:146:5: branch_false: ...to here
nss-3.110/nss/lib/ssl/sslinfo.c:158:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslinfo.c:176:30: branch_false: ...to here
nss-3.110/nss/lib/ssl/sslinfo.c:183:25: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslinfo.c:183:5: branch_false: ...to here
nss-3.110/nss/lib/ssl/sslinfo.c:185:5: danger: use of uninitialized value ‘&inf’ here
#  183|       inf.echPublicName = (inf.echAccepted == PR_FALSE) ? ss->ssl3.hs.echPublicName : NULL;
#  184|   
#  185|->     memcpy(info, &inf, inf.length);
#  186|       return SECSuccess;
#  187|   }

Error: GCC_ANALYZER_WARNING (CWE-835): [#def598]
nss-3.110/nss/lib/ssl/sslnonce.c:1170:12: warning[-Wanalyzer-infinite-loop]: infinite loop
nss-3.110/nss/lib/ssl/sslnonce.c:1167:1: enter_function: entry to ‘SSL_ClearSessionCache’
nss-3.110/nss/lib/ssl/sslnonce.c:1170:12: danger: infinite loop here
nss-3.110/nss/lib/ssl/sslnonce.c:1170:12: branch_true: if it ever follows ‘true’ branch, it will always do so...
nss-3.110/nss/lib/ssl/sslnonce.c:1171:9: call_function: inlined call to ‘UncacheSID’ from ‘SSL_ClearSessionCache’
 branch_true: ...to here
# 1168|   {
# 1169|       LOCK_CACHE;
# 1170|->     while (cache != NULL)
# 1171|           UncacheSID(cache);
# 1172|       UNLOCK_CACHE;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def599]
nss-3.110/nss/lib/ssl/sslsock.c:2485:14: warning[-Wanalyzer-jump-through-null]: jump through null pointer
nss-3.110/nss/lib/ssl/sslsock.c:2410:1: enter_function: entry to ‘SSL_ReconfigFD’
nss-3.110/nss/lib/ssl/sslsock.c:2416:8: branch_false: following ‘false’ branch (when ‘model’ is non-NULL)...
nss-3.110/nss/lib/ssl/sslsock.c:2420:10: branch_false: ...to here
nss-3.110/nss/lib/ssl/sslsock.c:2420:10: call_function: calling ‘ssl_FindSocket’ from ‘SSL_ReconfigFD’
nss-3.110/nss/lib/ssl/sslsock.c:2420:10: return_function: returning to ‘SSL_ReconfigFD’ from ‘ssl_FindSocket’
nss-3.110/nss/lib/ssl/sslsock.c:2421:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslsock.c:2426:10: branch_false: ...to here
nss-3.110/nss/lib/ssl/sslsock.c:2426:10: call_function: calling ‘ssl_FindSocket’ from ‘SSL_ReconfigFD’
nss-3.110/nss/lib/ssl/sslsock.c:2426:10: return_function: returning to ‘SSL_ReconfigFD’ from ‘ssl_FindSocket’
nss-3.110/nss/lib/ssl/sslsock.c:2428:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslsock.c:2433:5: branch_false: ...to here
nss-3.110/nss/lib/ssl/sslsock.c:2447:8: branch_false: following ‘false’ branch...
 branch_false: ...to here
nss-3.110/nss/lib/ssl/sslsock.c:2482:10: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/ssl/sslsock.c:2485:14: branch_true: ...to here
nss-3.110/nss/lib/ssl/sslsock.c:2485:14: call_function: calling ‘SSL_GetExperimentalAPI’ from ‘SSL_ReconfigFD’
nss-3.110/nss/lib/ssl/sslsock.c:2485:14: return_function: returning to ‘SSL_ReconfigFD’ from ‘SSL_GetExperimentalAPI’
nss-3.110/nss/lib/ssl/sslsock.c:2485:14: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/ssl/sslsock.c:2485:14: branch_true: ...to here
nss-3.110/nss/lib/ssl/sslsock.c:2485:14: call_function: calling ‘SSL_GetExperimentalAPI’ from ‘SSL_ReconfigFD’
nss-3.110/nss/lib/ssl/sslsock.c:2485:14: return_function: returning to ‘SSL_ReconfigFD’ from ‘SSL_GetExperimentalAPI’
nss-3.110/nss/lib/ssl/sslsock.c:2485:14: danger: jump through null pointer here
# 2483|            cursor = PR_NEXT_LINK(cursor)) {
# 2484|           sslCustomExtensionHooks *hook = (sslCustomExtensionHooks *)cursor;
# 2485|->         rv = SSL_InstallExtensionHooks(ss->fd, hook->type,
# 2486|                                          hook->writer, hook->writerArg,
# 2487|                                          hook->handler, hook->handlerArg);

Error: GCC_ANALYZER_WARNING (CWE-457): [#def600]
nss-3.110/nss/lib/ssl/sslsock.c:4642:5: warning[-Wanalyzer-use-of-uninitialized-value]: use of uninitialized value ‘&token’
nss-3.110/nss/lib/ssl/sslsock.c:4605:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslsock.c:4614:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslsock.c:4620:22: branch_false: ...to here
nss-3.110/nss/lib/ssl/sslsock.c:4624:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/sslsock.c:4627:8: branch_false: ...to here
nss-3.110/nss/lib/ssl/sslsock.c:4642:5: danger: use of uninitialized value ‘&token’ here
# 4640|   
# 4641|       token.length = PR_MIN(sizeof(SSLResumptionTokenInfo), len);
# 4642|->     PORT_Memcpy(tokenOut, &token, token.length);
# 4643|   
# 4644|       ssl_DestroySID(&sid, PR_FALSE);

Error: CPPCHECK_WARNING (CWE-758): [#def601]
nss-3.110/nss/lib/ssl/tls13con.c:6454: error[shiftTooManyBitsSigned]: Shifting signed 32-bit value by 31 bits is undefined behaviour
# 6452|   
# 6453|       /* Return "disallowed" if the message mask bit isn't set. */
# 6454|->     if (!(_M(message) & KnownExtensions[i].messages)) {
# 6455|           return tls13_extension_disallowed;
# 6456|       }

Error: GCC_ANALYZER_WARNING (CWE-476): [#def602]
nss-3.110/nss/lib/ssl/tls13ech.c:2326:13: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘tmpEchInner’
nss-3.110/nss/lib/ssl/tls13ech.c:2297:14: release_memory: ‘tmpEchInner’ is NULL
nss-3.110/nss/lib/ssl/tls13ech.c:2309:8: branch_false: following ‘false’ branch...
nss-3.110/nss/lib/ssl/tls13ech.c:2319:5: branch_false: ...to here
nss-3.110/nss/lib/ssl/tls13ech.c:2321:8: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/ssl/tls13ech.c:2326:24: branch_true: ...to here
nss-3.110/nss/lib/ssl/tls13ech.c:2326:24: release_memory: ‘tmpEchInner’ is NULL
nss-3.110/nss/lib/ssl/tls13ech.c:2326:13: danger: dereference of NULL ‘tmpEchInner’
# 2324|   
# 2325|           /* Start over on ECHInner */
# 2326|->         b = tmpEchInner->data;
# 2327|           length = tmpEchInner->len;
# 2328|           rv = ssl3_HandleClientHelloPreamble(ss, &b, &length, &tmpSid,

Error: GCC_ANALYZER_WARNING (CWE-476): [#def603]
nss-3.110/nss/lib/util/secitem.c:260:5: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘to’
nss-3.110/nss/lib/util/secitem.c:455:1: enter_function: entry to ‘SECITEM_DupArray’
nss-3.110/nss/lib/util/secitem.c:464:8: branch_false: following ‘false’ branch (when ‘from’ is non-NULL)...
nss-3.110/nss/lib/util/secitem.c:464:20: branch_false: ...to here
nss-3.110/nss/lib/util/secitem.c:467:14: call_function: calling ‘SECITEM_AllocArray’ from ‘SECITEM_DupArray’
nss-3.110/nss/lib/util/secitem.c:467:14: return_function: returning to ‘SECITEM_DupArray’ from ‘SECITEM_AllocArray’
nss-3.110/nss/lib/util/secitem.c:468:8: branch_false: following ‘false’ branch...
 branch_false: ...to here
nss-3.110/nss/lib/util/secitem.c:471:17: branch_true: following ‘true’ branch...
nss-3.110/nss/lib/util/secitem.c:473:61: branch_true: ...to here
nss-3.110/nss/lib/util/secitem.c:473:42: release_memory: ‘0’ is NULL
nss-3.110/nss/lib/util/secitem.c:472:24: release_memory: ‘0’ is NULL
nss-3.110/nss/lib/util/secitem.c:472:24: call_function: calling ‘SECITEM_CopyItem_Util’ from ‘SECITEM_DupArray’
#  258|   SECITEM_CopyItem(PLArenaPool *arena, SECItem *to, const SECItem *from)
#  259|   {
#  260|->     to->type = from->type;
#  261|       if (from->data && from->len) {
#  262|           if (arena) {

Scan Properties

analyzer-version-clippy1.86.0
analyzer-version-cppcheck2.17.1
analyzer-version-gcc15.0.1
analyzer-version-gcc-analyzer15.0.1
analyzer-version-shellcheck0.10.0
analyzer-version-unicontrol0.0.2
enabled-pluginsclippy, cppcheck, gcc, shellcheck, unicontrol
exit-code0
hostip-172-16-1-160.us-west-2.compute.internal
known-false-positives/usr/share/csmock/known-false-positives.js
known-false-positives-rpmknown-false-positives-0.0.0.20250425.124705.g1c7c448.main-1.el9.noarch
mock-configfedora-rawhide-x86_64
project-namenss-3.110.0-2.fc43
store-results-to/tmp/tmpaiiohfen/nss-3.110.0-2.fc43.tar.xz
time-created2025-04-25 14:40:27
time-finished2025-04-25 14:48:23
toolcsmock
tool-args'/usr/bin/csmock' '-r' 'fedora-rawhide-x86_64' '-t' 'unicontrol,cppcheck,gcc,clippy,shellcheck' '-o' '/tmp/tmpaiiohfen/nss-3.110.0-2.fc43.tar.xz' '--gcc-analyze' '--unicontrol-notests' '--unicontrol-bidi-only' '--install' 'pam' '--gcc-analyzer-bin=/usr/bin/gcc' '/tmp/tmpaiiohfen/nss-3.110.0-2.fc43.src.rpm'
tool-versioncsmock-3.8.1.20250422.172604.g26bc3d6-1.el9