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

  • SEARCH
  • Home
  • 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 3951980
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T01:47:44+00:00 2026-05-20T01:47:44+00:00

I am doing a memcpy of clsf_ptr to upclsf memcpy(&upclsf, &clsf_ptr, sizeof(struct classifier)); while

  • 0

I am doing a memcpy of clsf_ptr to upclsf

memcpy(&upclsf, &clsf_ptr, sizeof(struct classifier));

while debugging using gdb i checked the memory address of upclsf
when i did print &upclsf i got

(gdb) p &upclsf
$1 = (struct classifier **) 0xbffff184

when i did print upclsf i got

(gdb) p upclsf
$2 = (struct classifier *) 0x2e312e31

which is the address here i am not able to understand, here upclsf is an instance of the structure classifier

  • 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-20T01:47:44+00:00Added an answer on May 20, 2026 at 1:47 am

    GDB disagrees — upclsf is not a struct classifier, it is a pointer. Note that the two answers have different types. The first one (&upclsf) is struct classifier **, the second one (upclsf) is struct classifier *. Here is the memory layout:

    addr 0xbffff184 / upclsf: pointer to 0x2e312e31
    
    addr 0x2e312e31 / *upclsf: (structure data)
    

    You want to change your memcpy to:

    memcpy(upclsf, &clsf_ptr, sizeof(struct classifier));
    

    Or possibly:

    memcpy(upclsf, clsf_ptr, sizeof(struct classifier));
    

    Note that memcpy will wantonly destroy data and is not type-safe! Therefore you have to be extra careful when you use it to ensure that the types you give it are correct. I suggest defining the following function:

    static inline void
    classifier_copy(struct classifier *dest, struct classifier const *src)
    {
        memcpy(dest, src, sizeof(*dest));
    }
    

    This will catch type errors. I make one of these for any structure I copy more than once or twice.

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

Sidebar

Related Questions

Is it evil to serialize struct objects using memcpy? In one of my projects
I have a function that is doing memcpy, but it's taking up an enormous
Long: char long_num[8]; for(i=0; i<8; i++) long_num[i] = data[pos++]; memcpy(&res, long_num, 8); The values
While doing filing im stuck here.The condition of the while loop is not working.The
While doing the data/time parsing in c++ (converting a string in any format to
Doing odd/even styling with jQuery is pretty easy: $(function() { $(.oddeven tbody tr:odd).addClass(odd); $(.oddeven
When doing an INSERT with a lot of data, ie: INSERT INTO table (mediumtext_field)
When doing small icons, header graphics and the like for websites, is it better
When doing case-insensitive comparisons, is it more efficient to convert the string to upper
When doing TDD , how to tell that's enough tests for this class /

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.