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 6358237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:19:54+00:00 2026-05-24T23:19:54+00:00

struct str { uint8_t *data; }; int main() { struct str *buffer; free(buffer->data); }

  • 0
struct str {
uint8_t *data;
};

int main() {
    struct str *buffer;
    free(buffer->data);
}

How to right check data before use free ? This example call Segmentation failed …

  • 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-05-24T23:19:56+00:00Added an answer on May 24, 2026 at 11:19 pm

    This is because your data has not been allocated. You only create a pointer on a struct str. The correct use is the following:

    int main() {
      struct str *buffer = (struct str*)malloc(sizeof(struct str));
      if (buffer == NULL) { fprintf(stderr, "Error with malloc\n"); exit (EXIT_FAILURE); }
      buffer->data = (uint8_t*)malloc(sizeof uint8_t);
      if (buffer->data == NULL) { fprintf(stderr, "Error with malloc\n"); exit (EXIT_FAILURE); }
      // Process data here
      free(buffer->data);
      free(buffer);
      return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider the following C++ program struct str { int mem; str() try :mem(0) {
struct stVitals // Entity vitals { int str; int xp; int batk; }; int
struct elem { int i; char k; }; elem user; // compile error! struct
struct TimerEvent { event Event; timeval TimeOut; static void HandleTimer(int Fd, short Event, void
struct { char a; int b; } x; Why would one define a struct
typedef struct { nat id; char *data; } element_struct; typedef element_struct * element; void
Say I have a struct s with an int pointer member variable i. I
If I define a struct in C# using automatic properties like this: public struct
void addNewNode (struct node *head, int n) { struct node* temp = (struct node*)
If I have the following: typedef struct _MY_STRUCT { int a; float b; }

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.