Mercurial > trustbridge
view cinst/nss-secitemlist.c @ 306:9c5e6b142611
Set the home directory to a temporary location to avoid writing into real nss stores
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Thu, 03 Apr 2014 15:30:25 +0200 |
parents | 809eaca3898c |
children | 6ccaf25219fd |
line wrap: on
line source
#include "nss-secitemlist.h" void seciteml_push (seciteml_t **list, SECItem *item) { seciteml_t *newlelt; SECItem *newitem; newlelt = (seciteml_t *)xmalloc( sizeof(seciteml_t) ); newitem = (SECItem *)xmalloc( sizeof(SECItem) ); memcpy(newitem, item, sizeof(SECItem)); newlelt->item = newitem; newlelt->next = *list; *list = newlelt; } SECItem *seciteml_pop (seciteml_t **list) { seciteml_t *oldlelt; SECItem *item = NULL; if (*list != NULL) { oldlelt = *list; item = oldlelt->item; *list = oldlelt->next; } return(item); }