[DGD] Re: 1.2.74 - WinXP Results

Felix A. Croes felix at dworkin.nl
Sun Feb 1 22:27:29 CET 2004


> Sure thing.  Let me know if you need anything else - I am not familiar with
> driver source and so I cannot measure the usefulness of just the error.
>
>
> In dgd/src/array.c:
> Unhandled exception in dgd.exe: 0xC0000005: Access Violation.

Please try it with the following code for arr_init:

    void arr_init(size)
    unsigned int size;
    {
	max_size = size;
	tag = 0;
	aclist = (arrchunk *) NULL;
	ahchunksz = ARR_CHUNK;
	flist = (array *) NULL;
	ht = ALLOC(arrh*, ARRMERGETABSZ);
	memset(ht, '\0', ARRMERGETABSZ * sizeof(arrh *));
	alink = (arrh **) NULL;
	ahlist = (arrhchunk *) NULL;
	achunksz = ARR_CHUNK;
	fmelt = (mapelt *) NULL;
	meltlist = (meltchunk *) NULL;
	meltchunksz = MELT_CHUNK;
    }

Regards,
Dworkin
_________________________________________________________________
List config page:  http://list.imaginary.com/mailman/listinfo/dgd



More information about the DGD mailing list