[DGD] Re: 1.2.74 - WinXP Results
John Ruiz
jruiz at johnruiz.com
Sun Feb 1 21:51:32 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.
/*
* NAME: array->alloc()
* DESCRIPTION: create a new array
*/
array *arr_alloc(size)
unsigned int size;
{
register array *a;
if (flist != (array *) NULL) {
/* from free list */
a = flist;
-> flist = (array *) a->primary;
} else {
if (achunksz == ARR_CHUNK) {
register arrchunk *l;
/* new chunk */
l = ALLOC(arrchunk, 1);
l->next = aclist;
aclist = l;
achunksz = 0;
}
-John
_________________________________________________________________
List config page: http://list.imaginary.com/mailman/listinfo/dgd
More information about the DGD
mailing list