Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
5answers
397 views

Why is there no reallocation functionality in C++ allocators?

In C the standard memory handling functions are malloc(), realloc() and free(). However, C++ stdlib allocators only parallel two of them: there is no reallocation function. Of course, it would not ...
14
votes
3answers
200 views

Does std::vector *have* to move objects when growing capacity? Or, can allocators “reallocate”?

A different question inspired the following thought: Does std::vector<T> have to move all the elements when it increases its capacity? As far as I understand, the standard behaviour is for the ...
11
votes
3answers
629 views

Using realloc in c++

std::realloc is dangerous in c++ if the malloc'd memory contains non-pod types. It seems the only problem is that std::realloc wont call the type destructors if it cannot grow the memory in situ. A ...
8
votes
6answers
919 views

Aligned memory management?

I have a few related questions about managing aligned memory blocks. Cross-platform answers would be ideal. However, as I'm pretty sure a cross-platform solution does not exist, I'm mainly ...
8
votes
4answers
905 views

What is the correct usage of realloc() when it fails and returns NULL?

Can anyone summarize what is the correct usage of realloc()? What do you do when realloc() fails? From what I have seen so far, it seems that if realloc() fails, you have to free() old pointer. Is ...
8
votes
4answers
203 views

What happens if I re-alloc and the new size is 0. Is this equivalent with a free?

Given the following code: int *a = NULL; a = calloc(1, sizeof(*a)); printf("%d\n", a); a = realloc(a, 0); printf("%d\n", a); return (0); It returns: 4078904 0 Is this realloc equivalent to a ...
8
votes
5answers
451 views

How to update other pointers when realloc moves the memory block?

The realloc reference says: The function may move the memory block to a new location, in which case the new location is returned. Does it mean that if I do this: void foo() { void* ...
6
votes
7answers
1k views

simple c malloc

While there are lots of different sophisticated implementations of malloc / free for C/C++, I'm looking for a really simple and (especially) small one that works on a fixed-size buffer and supports ...
6
votes
11answers
186 views

How can I make sure that a caller passes a malloc'd pointer?

I have a function which reallocs a pointer given as an argument to a new size. Now, the problem is that - according to the man page - realloc needs a pointer which has been returned by malloc or ...
6
votes
5answers
442 views

Should I enforce realloc check if the new block size is smaller than the initial?

Can realloc fail in this case? int *a = NULL; a = calloc(100, sizeof(*a)); printf("1.ptr: %d\n", a); a = realloc(a, 50 * sizeof(*a)); printf("2.ptr: %d\n", a); if(a == NULL){ printf("Is it ...
5
votes
5answers
364 views

How does realloc know how much to copy?

how does realloc know the size of original data? void *realloc(void *ptr, size_t size); So, if the implementation is like this: temp = malloc(size); memcpy(.. // How much to copy? free(ptr); ...
4
votes
3answers
89 views

Using realloc to expand buffer while reading from file crashes

I am writing some code that needs to read fasta files, so part of my code (included below) is a fasta parser. As a single sequence can span multiple lines in the fasta format, I need to concatenate ...
4
votes
1answer
182 views

Shrinking with realloc

I encountered this small piece of code in this question, & wanted to know, Can the realloc() function ever move a memory block to another location, when the memory space pointed to is shrinked? ...
4
votes
3answers
899 views

How do you `realloc` in C++?

Any ideas how to realloc in C++? It seems to be the missing language language - there is new and delete but not resize! I need it because as my program reads more data, I need to reallocate the ...
4
votes
5answers
808 views

can realloc move pointer if new size smaller?

I am wondering whether the C or C++ standard guarantees that a pointer is not changed when realloc is called with a smaller (nonzero) size: size_t n=1000; T*ptr=(T*)malloc(n*sizeof(T)); //<--do ...
4
votes
8answers
4k views

Passing a dynamic array in to functions in C

I'm trying to create a function which takes an array as an argument, adds values to it (increasing its size if necessary) and returns the count of items. So far I have: int main(int argc, char** ...
3
votes
3answers
77 views

If destination and source are the same, what does memmove do?

If destination and source are the same, does memmove still "move" the data (or does it return directly)? What about realloc; what if the new size is the same as the old size?
3
votes
2answers
72 views

Realloc x86 x86_64

I have a function void *srealloc(void * ptr , int size){ void *tmp = realloc(ptr , size); if(tmp == NULL){ fprintf(stderr,"realloc of %u bytes failed", size); exit(1); } ...
3
votes
4answers
84 views

realloc a struct, c

I have the next struct struct Board { int width; int height; char **board; } And I would like to expand the **board, meaning I need more memory and thus the call to realloc(). So my ...
3
votes
7answers
364 views

C - Dynamic Array

I'm trying to feed an array with fscanf() while looping through a file containing a list of integers, n integers long. It seems that I need to use malloc and/or potentially realloc. I've heard that ...
3
votes
2answers
323 views

How do I allocate more space for my array of C structs?

I'm trying to add 10 more elements to my struct that has been already malloc with a fixed sized of 20. This is the way I have my struct defined: #include <stdio.h> #include <stdlib.h> ...
3
votes
2answers
439 views

Can realloc shrink my array on the left side (C only)?

I want to move a large chunk of data i've got in my memory. Unfortunately this data is saved as an array, and i cannot change that. I can't use circular arrays, because the same memory is also used by ...
3
votes
4answers
227 views

Problem with realloc() in C. Always hangs but compiles fine

I'm having some trouble with a program that is intended to be a String buffer, specifically this function is intended to reset the buffer with the string cstr. If cstr is null then the content needs ...
3
votes
4answers
327 views

Why Win32 HeapReAlloc() changes values?

I'm writing an app in C using win32 API. When I try to enlarge the size of my array, using the HeapRealloc() function, it changes my current values in the array, instead of copying them. The code I ...
3
votes
4answers
605 views

Does realloc free the former buffer if it fails?

If realloc fails and returns NULL is the former buffer free'd or it is kept intact? I didn't found that particular piece of information in the man page and I'm quite unsure what to do. If memory is ...
3
votes
4answers
706 views

Realloc Problem

Thank you for looking, please ignore - all sorts of shenanigans are happening and I am trying to debug more. ===================================== Can anyone explain this behavior of realloc? ...
2
votes
1answer
59 views

using realloc won't store values in array after exiting the funcion

After puting the values in data base in an array and sending the values to addReader within the function itself ,the values are stored successfully , however when going back to main the entered values ...
2
votes
1answer
67 views

Allocating space and concatenating to a unsigned char array in c

I'm creating an image compressor for a project. I generate codes for the values in the image in such a way that for every grey value (from 0-254) there is a char* code in an array called codeArray ...
2
votes
3answers
97 views

Dynamic Stack Memory Reallocation

I'm fairly new to C++ and new to pointers as well. I'm currently working on a stack and was trying to reallocate the memory for the stack as the size of the stack reaches the top however, I'm running ...
2
votes
1answer
81 views

Using realloc in clang to shrink memory

I've run into an issue with our code under clang involving realloc. This code works fine under gcc and visual studio, so I'm interested in understanding clang's behavior. Our code does something ...
2
votes
4answers
85 views

Does realloc just expand the memory or might that lead to memory problems?

I have the following code: #include <stdio.h> #include <stdlib.h> #define OUT void getDataFromServer(OUT int** array, OUT int* size) { static int tmpArr[] = {0x00, 0x01, 0x02, 0x03, ...
2
votes
6answers
255 views

Is realloc() safe in embedded system?

While developing a piece of software for embedded system I used realloc() function many times. Now I've been said that I "should not use realloc() in embedded" without any explanation. Is realloc() ...
2
votes
1answer
130 views

Errors when using realloc()

I am using realloc() to dynamically size some arrays. Because I was writing a lot of code like this: void *tmp; if( (tmp = realloc(myobject, sizeof(object) * newsize) != NULL) myobject = tmp ...
2
votes
4answers
325 views

Does memcpy() uses realloc()?

#inlcude <stdio.h> #inlcude <stdlib.h> #inlcude <string.h> int main() { char *buff = (char*)malloc(sizeof(char) * 5); char *str = "abcdefghijklmnopqrstuvwxyz"; memcpy ...
2
votes
3answers
137 views

Realloc Vs Linked List Scanning

I have to read from a file an unknown number of rows and save them in to a structure (I would like to avoid a prepocessing to count the total number of elements). After the reading phase I have to ...
2
votes
8answers
632 views

Replacing realloc (C --> C++)

In an earlier question, I asked about typecasting pointers, but was directed to the better solution of using the C++ allocation system instead of mallocs. (I am converting some C code to C++) ...
2
votes
4answers
624 views

Does realloc overwrite old contents?

When we reallocate memory via realloc(), are the previous contents over-written? I am trying to make a program which reallocates memory each time we enter the data into it. Please tell me about ...
2
votes
4answers
317 views

Reallocate a 2d char array

I have following code int wordLenght = 256, arrayLength = 2, i = 0, counter = 0; char **stringArray = NULL; stringArray = calloc(arrayLength, sizeof(*stringArray)); for(counter; ...
2
votes
1answer
3k views

realloc(): invalid next size

I'm having a problem with the realloc function. I'm using C only (so no vector) with LibCurl. The problem I'm having is that I'm getting the following error (realloc(): invalid next size) on the 12th ...
2
votes
5answers
2k views

How to create extensible dynamic array in Java without using pre-made classes?

Yeah, it's a homework question, so givemetehkodezplsthx! :) Anyway, here's what I need to do: I need to have a class which will have among its attributes array of objects of another class. The proper ...
2
votes
2answers
144 views

Strange realloc behaviour

i'm developing an array structure just for fun. This structure, generalized by a template parameter, pre allocates a given number of items at startup, then, if "busy" items are more than available ...
2
votes
7answers
1k views

How to handle realloc when it fails due to memory?

Question says it all but here is an example: typedef struct mutable_t{ int count, max; void **data; } mutable_t; void pushMutable(mutable_t *m, void *object) { if(m->count == ...
2
votes
2answers
428 views

in-place realloc with gcc/linux

Is there such a thing? I mean some function that would reallocate memory without moving it if possible or do nothing if not possible. In Visual C there is _expand which does what I want. Does anybody ...
2
votes
3answers
643 views

resizing buffer using realloc

If the area pointed to was moved, a free(ptr) is done. Can you please explain the above line about realloc()? This line is from a man page for calloc, malloc, realloc and free.
2
votes
6answers
2k views

Question on using realloc implementation in C++ code

Friends In our C++ , Iam current using realloc method to resize the memory allocated by malloc. realloc() usage is done as below my_Struct *strPtr =(my_struct*)malloc(sizeof(my_Struct)); /* an ...
1
vote
0answers
98 views

realloc causes memory leak according to valgrind

I've implemented a method to reallocate an array field of a struct. Valgrind shouts that this causes mem-leak. 122,689,764 (2,569,440 direct, 120,120,324 indirect) bytes in 4,146 blocks are ...
1
vote
4answers
54 views

Appending a value to the end of a dynamic array

Well I have been studying a little C this winter break and in my adventures I stumbled upon an issue with a Dynamic Array. It's a fairly simple program really. What I am trying to do is to create an ...
1
vote
4answers
98 views

I have debug it for 4 hours,but I still can't find the BUG

This is program is input some string from a file, then, push strings into LineBuf one by one, after we push one string into LineBuf, print LineBuf,then, make LineBuf empty. This is my code: #include ...
1
vote
4answers
76 views

Using Realloc in C

Its really a post for some advice in terms of the use of realloc, more specifically, if I could make use of it to simplify my existing code. Essentially, what the below does, it dynamically allocate ...
1
vote
5answers
77 views

realloc behaviour while downsizing the memory held by the pointer

Confusion 1: The man realloc says that the object will be moved if it has to do a new allocation to resize the object to a new size. However when downsizing, there are many places which says it is ...

1 2 3