Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8230711
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T17:13:33+00:00 2026-06-07T17:13:33+00:00

I have a struct which holds a next pointer to a struct of the

  • 0

I have a struct which holds a next pointer to a struct of the same type.

I have the following code which stores the number of the struct that the node pointer stores, frees it, and sets node to the node->next. How is node->next known what it is if free has been called right before it?

double data = node->element;
free(node)
node = node->next;
return data;

However, following the same logic, the following code segfaults. The only difference is that this uses a node and the other just stores the element in its basic data type.

struct node *temp;
temp = node;
free(node);
node = node->next;
return temp;

Why is this happening? And how does the first segment of code work anyway?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T17:13:34+00:00Added an answer on June 7, 2026 at 5:13 pm

    You shouldn’t ever dereference a freed pointer – it is asking for trouble and is likely the source of your segfault. Even if it doesn’t segfault, you cannot make any assumptions on the vailidity of the data at that memory address and so it is just not a good thing to do.
    You haven’t given too many details in your question but why not modify your code slightly to try this order instead

    struct node *temp = node->next;
    free(node);
    return temp;
    

    this way you store the pointer before deleting node and should not get a segfault

    As for the first code

    double data = node->element;
    free(node)
    node = node->next;
    return data;
    

    why not just replace with

    double data = node->element;
    free(node)
    return data;
    

    as this removes the code that accesses freed memory, and your line

    node = node->next;
    

    is practically pointless when in the next line you free node anyway.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this type which is basically a struct { int x,y,z; } that
I have a std::vector that holds a Point struct (x,y,z and some other non-pointer
In my code I have a class lipid which holds three bead s: struct
I have a struct, known as Shader, which holds the following information: struct Shader
I have a struct which has several arrays within it. The arrays have type
-In my c code I have a struct which contains many unknown sized arrays
I have a struct Primitive, which has the following definition: typedef struct Primitive {
I have a byte array which needs to be marshalled into the following struct:
Assume I have an array which holds some struct defined as follows: static struct
So I have a class which holds a struct inside its private variables and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.