DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦9ff9ab898⟧ TextFile

    Length: 409 (0x199)
    Types: TextFile
    Names: »avs_del.c«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/dsap/common/avs_del.c« 

TextFile

#include "quipu/util.h"
#include "quipu/attrvalue.h"

extern LLog * log_dsap;

avs_delnext (avs)
AV_Sequence  avs;
{
AV_Sequence ptr;
	if (avs == NULLAV)
		DLOG (log_dsap,LLOG_DEBUG,("delnext of null avs!"));
	else    {
		ptr = avs->avseq_next;
		if (ptr == NULLAV)
			DLOG (log_dsap,LLOG_DEBUG,("no new avs to delete!"));
		else    {
			avs->avseq_next = ptr->avseq_next;
			avs_comp_free (ptr);
			}
		}
}