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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T20:29:57+00:00 2026-05-28T20:29:57+00:00

I want to copy an object and send it over the network with winsock,

  • 0

I want to copy an object and send it over the network with winsock, but there is one problem. I destroy the stack if I copy an object to an array of chars on the heap. Here is my code:

testclass backditup;       //This is an object with information
testclass restorenaarhier; //I will copy it to this object

backditup.setvalues(100,100);
restorenaarhier.setvalues(0,0);

char * dataholder = new char[sizeof(backditup)];  //This is the data holder
ZeroMemory(&dataholder,sizeof(backditup));

memcpy(&dataholder,&backditup,sizeof(backditup)); //Save it to the char[]

//Sending it over the network
//resieving the object

//Store the data on the same object 
memcpy(&restorenaarhier,&dataholder,sizeof(restorenaarhier));

//deleting the data holder
ZeroMemory(&dataholder,sizeof(dataholder));
delete dataholder;

//output the code
restorenaarhier.echo();

The code will work properly, but when I compile this in debug mode I get at the end:
http://imageshack.us/photo/my-images/839/errormnr.png/

Run-Time Check Failure #2 Stack around the variable ‘dataholder’ was corrupted.

Can someone help me with this?

  • 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-28T20:29:58+00:00Added an answer on May 28, 2026 at 8:29 pm

    Your dataholder variable is a pointer to an array the size of backditup, not the array itself. Thus, when you do the Zeromemory and memcpy calls, you should not take its address; instead, write:

    ZeroMemory(dataholder,sizeof(backditup));
    memcpy(dataholder,&backditup,sizeof(backditup));
    

    without the &. Likewise, when you copy the data back, you want:

    memcpy(&restorenaarhier,dataholder,sizeof(restorenaarhier));
    

    And, finally, you need to make the same fix in the second Zeromemory call — although, since you are deleting the array immediately after that call, there really is no point in having that call at all.

    The size in the second Zeromemory call is erroneous for the same reason; sizeof(dataholder) is the size of the pointer, not the array it’s pointing to. If you don’t simply delete this call entirely, you should either use sizeof(backditup) here for consistency with the declaration, or better yet, declare a variable to hold the length of the dataholder array and use that consistently. (Or you can use the size of the data type, sizeof(testclass) — that’s probably the best option.)

    Finally, as Mark Wilkins noted in his answer, you need to delete arrays with delete[], not delete, to avoid corrupting the heap.

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

Sidebar

Related Questions

I want to copy values from one object to another object. Something similar to
I want to copy or clone a object of my own written class. But
I must send copy of Form1 object to my method where I don't want
I want to copy the content from one object stored in one docbase to
I want to copy superclass object getters to subclass object setters. But how can
so I want to copy an object from an NSMutableArray : self.myObject = [self.myMutableArray
I want to copy contents of one row in Excel to other row. Currently,
i want to copy a directory from one drive to another drive. My selected
Using VBA I want to send a copy of the current word document to
how to copy an object with some elements? I want to copy this object,

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.