Search:

Type: Posts; User: Zyreal687

Search: Search took 0.01 seconds.

  1. Thank you Bayint, that link was very helpful....

    Thank you Bayint, that link was very helpful.
    I've been working on it all week and that bit of information really solved all my segfaults.
    It works now!
  2. Okay here is the revised version: struct...

    Okay here is the revised version:



    struct node *buildNode(char *s){
    struct node *temp = NULL;
    struct hashlist *headList = hashtab[hash(s)];
    temp = malloc(sizeof(struct node));
    char...
  3. There is no compiler warning. In fact it compiles...

    There is no compiler warning. In fact it compiles fine, it's only in runtime that it gives me the Status Access Violation error. I've been messing around with linked lists all weekend and i've had no...
  4. But it happens when i call the search function as...

    But it happens when i call the search function as well, which only has a local structure. From what i can gather the address of something is being accessed simultaneously, but i can't see it. Can you...
  5. Array of Linked Lists: Status Access Violation!!

    I'm building a 'simulated' web browsing experience that simply intakes character strings, pretends their URLs, and does what a web browser would do. It creates a cache and moves strings that have...
Results 1 to 5 of 5