Help with linked list in C


 
Thread Tools Search this Thread
Top Forums Programming Help with linked list in C
# 1  
Old 03-30-2011
Error Help with linked list in C

i have this code


Code:
    typedef struct client_list {
        char *client_name;
        struct client_list * next;
        int client_socket_fd;
    } client;
    client *current, *head; head = NULL;
    char *h="test";
    add_client(current, h, head, &client_socket_fd);
    printf(current->client_name);

when it prints, i get a segmentation fault, what could be wrong?

the function add_client is
Code:
void add_client(client *current, char *username, client *head, int *client_socket_fd) {
    current = (client *)malloc(sizeof(client)); 
    current->client_name = username;
    current->next = head;
    current->client_socket_fd = *client_socket_fd;
    head = current;
    current = head;
}

# 2  
Old 03-31-2011
I think the problem is, that you only work on the malloc'ed memory locally within the function.
You give add_client a pointer of type client. This is given by call by value, i.e. assigning the pointer a newly malloc'ed memory will not assign this memory to the pointer in the main function! Therefore your client *current is pointing to an undefined memory location even after call of add_client.

Better do this:
Code:
client *add_client(char *username, client *head, int *client_socket_fd) {
    client *current;
    current = (client *)malloc(sizeof(client)); 
    current->client_name = username;
    current->next = head;
    current->client_socket_fd = *client_socket_fd;
    return current;
}


Furthermore: What are you willing to achieve with:
head = current;
current = head
?
# 3  
Old 03-31-2011
ok i changed it to

Code:
    typedef struct client_list {         
        char *client_name;         
        struct client_list * next;         
        int client_socket_fd;     
    } client;
    client *current; current->next = NULL;
    current = add_client("test", current, &client_socket_fd);
    printf(current->client_name);

and still segmentation error...

Code:
client *add_client(char *username, client *head, int *client_socket_fd) {
    client *current = (client *)malloc(sizeof(client)); 
    current->client_name = username;
    current->next = head;
    current->client_socket_fd = *client_socket_fd;
    return current;
}

# 4  
Old 03-31-2011
Code:
client *current;

This is just a pointer. It doesn't point to anything yet. The very next thing you do is use this invalid pointer: current->next = NULL; That could be trying to write to any memory whatsoever.

Do current=NULL; instead. A NULL head will mean an empty list. If you follow the logic in your function, it still works fine when head is NULL -- 'next' will be set to NULL, meaning end of list, and it won't crash because nothing uses the contents of 'head'.

Last edited by Corona688; 03-31-2011 at 05:00 PM..
# 5  
Old 03-31-2011
if this makes a difference, the way i am doing the list is backwards, so when i want to add something to it, i create a new one in the function, then add the given one (which could be NULL or an actual list) to the next, then return the new one
# 6  
Old 03-31-2011
To be honest, I did not understand your last sentence.

Anyways it does not make much difference whether you want a new entry to be the first one (after the head) or the last one. It is all just rearranged the next pointer. In the first case you rearrange the pointer from the head element to your newly created one and from there to the previously first, in the latter case you just traverse the list and change the last pointer form NULL to the new entry, making sure that the pointer in the newly created element points to NULL
# 7  
Old 03-31-2011
i still don't follow what your saying....
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

How to reverse a linked list by traversing only once.?

Program to reverse a linked list by traversing only once. (1 Reply)
Discussion started by: VSSajjan
1 Replies

2. Programming

How to delete the last node in a linked list.?

How to delete the last node in a single linked list given only the pointer to last node ? Head node will not be given. (5 Replies)
Discussion started by: VSSajjan
5 Replies

3. Programming

Help with linked list.

#include<stdio.h> #include<stdlib.h> struct LinkedList { int val; struct LinkedList *next; }node; /*Creating a structure variable*/ typedef struct LinkedList Node; Node *start = NULL; int create(int i) { Node *temp = NULL; if (start == NULL) ... (5 Replies)
Discussion started by: prinsh
5 Replies

4. UNIX for Advanced & Expert Users

Unix linked-list placement

Hi, I am programming in kernel, and I want to use a double linked list that holds infos that every process could access and modify THIS list. So, I suppose it is a 'global' variable since every process(thread) can reach it, I am wondering where to put it? by changing some of the kernel files? (1 Reply)
Discussion started by: louisTan
1 Replies

5. Programming

how to check if something exists in a struct linked list?

can someone provide an example of a struct linked list, where it has strings as its values, and then how do I check if a specific string (say called buffer) exists in the list of structs? i dont understand how to make a copy of it to check with this is what i have ... (0 Replies)
Discussion started by: omega666
0 Replies

6. Programming

How to check if something exists in linked list in C?

i have a linked list set up like typedef struct client_list { char *client_name; int client_socket_fd; struct client_list *next; } client; client *client_list=NULL; before adding to the list i check if it already exists, only if it does not then i add if (client_list==NULL... (1 Reply)
Discussion started by: omega666
1 Replies

7. Programming

I need C++ Code for single linked list

I need C++ Code for single linked list With operations as 1)insert at any position 2)delete any 3)change the data of any position (2 Replies)
Discussion started by: girija
2 Replies

8. Programming

shared memory with linked list??

is this possible, if so plz please share with me.. Correct English please, not Cyber-/Leetspeak (11 Replies)
Discussion started by: vijay_manpage
11 Replies

9. UNIX for Dummies Questions & Answers

List linked files

A perl script that displays the list of files which have multiple links..! ls -l shows number of links in a field. (0 Replies)
Discussion started by: aadi_uni
0 Replies

10. Programming

Reverse single linked list

Can any one help me in reversing the single linked list and at the same time i want to print the reversed links. (2 Replies)
Discussion started by: dhanamurthy
2 Replies
Login or Register to Ask a Question