C library function for reallocating a dynamically allocated memory region.

learn more… | top users | synonyms

0
votes
1answer
18 views

realloc() issues: deallocation of old block,new size bigger than old size,and passing static array base address

While reading about realloc() I have stumbled upon some doubts which I need to clarify rather than ignore.Your answers are very much sought.I have put them in a numbered list for clarity.Please don't ...
1
vote
1answer
32 views

Invalid address on realloc

I am building a program, that reads a giant stdin full of Words. I want to divide the input into strings of 100 Characters max. So here is my code. #include <string.h> #include <stdio.h> ...
-4
votes
1answer
46 views

realloc() was failing, so i made my own realloc function, but it's still failing… why? [closed]

As title: void* fuck_realloc(void *p, size_t size_, size_t previous_size) { void *k; k=malloc(size_); //<---Here copy_data(p, k, size_, previous_size); free(p); return k; } I ...
1
vote
1answer
49 views

C error invalid operands of types 'int*' and 'unsigned int' to binary 'operator*'|

so i get this error in C function. variables : int* first_array = (int*) malloc(0); int first_array_length; int* second_array = (int*) malloc(0); int second_array_length; // Setting up first ...
0
votes
1answer
41 views

Function with realloc crashes program aftere second run

So... it seems that after the second time in which the function realocVet runs, the error message "malloc: * error for object 0x7f8bfac039b0: pointer being realloc'd was not allocated" appears. I ...
0
votes
3answers
31 views

How to properly use free for specific struct type in C

I have looked through the other discussion and still cannot figure this out. I have a struct, typedef struct { char * word; int count; } wordType; In my code, I malloc each array[index].word and ...
-5
votes
1answer
65 views

using realloc in C with malloc [closed]

I somewhat understand what realloc does but when trying to reallocate a certain size of memory doesn't seem to click in to my mind. What if there is not a contigious size of the size wanted. Or if ...
0
votes
0answers
16 views

realloc an array of structs and then freeing up the memory in c

So my program has two problems both based on dynamically allocating memory in c. Basically I take a file in, store the words to an array of structs or increment the counter of the struct if the word ...
2
votes
1answer
48 views

invalid pointer from trying to use realloc for an array of structs in c

My program compiles but I am not working with pointers and realloc correctly. I have tried looking at other examples but I can't seem to translate it to my own program. The point of the program is to ...
0
votes
3answers
59 views

Realloc using stdarg

I'm trying to concatenate strings using stdarg (library) header, but I'm doing something wrong. There is a easier way to concatenate strings using realloc? #include <stdio.h> #include ...
0
votes
2answers
62 views

C programming problems with realloc and memcpy

I'm new to this forum. I thank you in advance for the help. every time I call to this function "agregar_segmento" my global pointer named "segment" should resize to contain new data values​​. data ...
0
votes
1answer
51 views

C - passing allocated pointer and using realloc in separate function

I need to find all the prime factors of a number. I have written this code, but when I try to reallocate the pointer array in calculatePrimes function using realloc, gcc gives error that i have not ...
1
vote
1answer
95 views

Best way of using malloc and realloc

I'm pritty new to using malloc and realloc and I have a few questions. Question 1. The game I am making allows you to create your own spaceschip, knowing this I was wondering is it better to realloc ...
0
votes
1answer
51 views

Using realloc to shrink the string inside struct

I have a small question about using the realloc function. Assuming I have: typedef struct { char* location; int temp; int numberOfRec; }TEMP; Then I declare a pointer to this struct in the ...
-2
votes
1answer
55 views

Creating realloc array in C function and sending it to another

My code: void calculations(int *data1, int *data2, int size1, int size2){ if (size1 != 0 && size2 != 0){ int *temp_data = NULL; all_in_one(&temp_data, data1, data2, *size1, ...
3
votes
6answers
85 views

How to know whether we ran out of memory or it was an error while using realloc()?

realloc(void *ptr, size_t new_size) returns NULL in two cases: If there is not enough memory, the old memory block is not freed and NULL is returned. NULL is also returned if error has occurred. ...
2
votes
2answers
92 views

Dynamically extending array C

I have a program that counts word occurrences in a text file and stores them in an array. So far I'm using a fixed array and everything works fine but now I'd like to change that to a dynamic array so ...
1
vote
1answer
60 views

C realloc segmentation fault with appending char * to char **

I'm having trouble with the following code, which appends a char * to a char** by allocating more space. size_t appendToken(char *tokens[], char *token, size_t size, size_t cap) { ...
2
votes
2answers
81 views

realloc: invalid next size, detected by glibc

My code: int args_size = 5; char** args; args = (char**) malloc(sizeof(char*) * args_size); // ... args = (char**) realloc(args, sizeof(char*) * (args_size += 5)); I want to increase the size ...
1
vote
1answer
84 views

gdb claims realloc() or free() corrupt memory while valgrind claims non-null terminated array run off…which is it?

Background I am working on a program where a thread, which is spun off a main thread, parses email logs and organizes each entry by the QID, an ID unique to each message. Problem The program was ...
1
vote
4answers
96 views

C: dynamic char-array crashes heap

I have yet again a question about the workings of C. (ANSI-C compiled by VS2012) I am refactoring a standalone program (.exe) into a .dll. This works fine so far but I stumble accross problems when ...
0
votes
2answers
56 views

realloc of array struct in other struct

My problem is in the line when I call realloc(), but works with the first "Elemento" #include #include using namespace std; typedef struct{ string palabra; string* significados; ...
1
vote
1answer
100 views

c - glibc / realloc / invalid pointer

This is a project for school. I coded a function called file_to_array_d, which puts all characters to one array, so file can be manipulated with ease. The program does some working with file, ...
0
votes
2answers
71 views

Copying content of array to resized array in C++

I've searched through many topics here, but they didn't seem to answer me exactly. I'm trying to do some dynamic reallocation od arrays in C++. I can't use anything from STL libraries as I need to ...
0
votes
1answer
91 views

strcpy corrupts char array (string value)

The function below tries to order strings on a linked list in ascending order. When it returns the new list, it becomes corrupted. void* order( void *ptr){ struct wordlist *head; head = ...
-1
votes
1answer
41 views

invalid next size when using free

I have a struct called bond which is defined as follows: typedef struct{ int type1; int type2; int id_1; int id_2; float dist; } bond; I am allocating an array of these structs ...
0
votes
0answers
74 views

Strange behavior of realloc in function

I wrote the following function void update_distr(int** distr, int counter, int * counter_prima){ int i; if (counter >= (*counter_prima)) { *distr = ...
1
vote
4answers
88 views

When realloc shrinks a allocated block, where is the memory free'd?

I'm constructing a bigInt datatype which uses an array of unsigned short's. In some functions, the highest order short may or may not be used, but is always allocated just in case. To prevent ...
0
votes
2answers
57 views

realloc an array of string

Currently, I have some confusion in realloc an array string. If I have this: char** str = (char**)malloc(100*sizeof(char*)); str[0] = (char*)malloc(sizeof(char)*7); //allocate a space for string size ...
6
votes
2answers
108 views

Memory is not reallocating

I'm in the middle of a project and I'm trying to use malloc() and realloc(). I know when I malloc, it works, but when I use realloc, it doesn't change the amount of alloced memory at all. I've always ...
0
votes
1answer
78 views

extend matrix in C

I have a matrix in C and I want to create another one which has double rows than the first matrix.Those added rows I want to have the values of first matrix ,but with changed sign. I am trying to ...
0
votes
0answers
83 views

Optimal Memory Utilization in realloc (splitting?)

I'm having difficulty with coding my realloc function. I have it working through standard memcpy procedure, but I can't get it optimized. I know there are two other cases I need to accommodate for: ...
1
vote
3answers
109 views

Dynamically expanding array using realloc

I have written following code to get clear with malloc and realloc. I have initialized pointer using malloc and then using realloc, i am increasing the size of the array. But i get following error ...
0
votes
2answers
73 views

Reallocating memory correctly in c++

#include <iostream> #include <stdlib.h> class circuitTypes{ protected: static int size; circuitTypes **Matrix; int input1,input2; int output1, output2; public: ...
0
votes
1answer
51 views

Unintended behaviour after realloc() with dynamic array

I have an assignment where I want to implement a dynamically growing array, but I seem to be having some issues with realloc(). My code works as long as I do not actually get to the realloc() part, ...
0
votes
1answer
37 views

Freeing realloc causing error

I am trying to free my memory allocated in the following program: include <stdio.h> #include <stdlib.h> void main(int argc, char** argv) { int* x = (int *) malloc(4 * sizeof(int)); ...
0
votes
3answers
92 views

realloc() in c.. printing junk value

i have uploaded all of the code.. this is work in progress.. please check for realloc() because if i dont reach the condition for realloc() everything works fine...Thanks evry1.. // contactinfo.h-- ...
2
votes
1answer
82 views

Pointer within structure reallocs fine, but pointer to a pointer within structure fails to realloc with invalid pointer error

While working on a program which requires frequent memory allocation I came across behaviour I cannot explain. I've implemented a work around but I am curious to why my previous implementation didn't ...
3
votes
1answer
75 views

Dynamically reallocating an array of structs in C [closed]

A part of my code will read in an unknown number of lines from a text file, parse that line into a structure (tempSomeStruct), resize the SomeStruct_Array, and then add that tempSomeStruct into the ...
2
votes
3answers
71 views

Initializing pointer to a pointer that's dynamically allocated in function

I am passing a pointer to a pointer into a function to dynamically allocate it as I am trying to store the data received from a socket. It works find for one request, the second one usually results in ...
1
vote
1answer
47 views

can a pthread_mutex_t be moved in memory?

I would like to build a dynamic malloced array of pthread_mutex that will grow over time (adding more mutexes). My question is whether they will still work if the array gets moved with realloc(). My ...
0
votes
5answers
92 views

Dynamic sized string in C

I have the following code and to edit the string of a "path" that I will be working on in a program that I am creating. My problem is that I the code works, but I have no idea why or to be clearer I ...
0
votes
1answer
53 views

realloc() on array of function ptrs leads to SIGABRT

On my current project, I do some function-ptr collecting before running the main part of the program. Some code: typedef void(*ShutdownFunctionPtr)(void); static ShutdownFunctionPtr ...
0
votes
3answers
77 views

realloc and the ghosts of mallocs past

I know that realloc will free memory when necessary, and I know the third rule of C - "for every malloc there must be an equal and opposite free"... but how do these two work together? The situation ...
0
votes
1answer
74 views

realloc a triple pointer

Hi I have a triple pointer that I want to realloc when my original array is filled up. For some reason, the way I'm using realloc gives me a seg fault. Anybody have a sense why? double ***matrixn; ...
-1
votes
1answer
78 views

ReAllocating with strings in C causes an error [closed]

I have a function to process strings using dynamic arrays and pointers.The function will make some manipulation on string which its pointer provided as a parameter then it will returns 1; But I'm ...
-1
votes
1answer
114 views

realloc invalid next size [closed]

I have been struggling with this, I tried using valgrind to track it down but can't seem to pin down the exact source of the error. I can call the function 4 times, but after that it throws the ...
-2
votes
3answers
57 views

Why free() function in C++ only deallocating 8 bytes of memory? [duplicate]

Possible Duplicate: Why do I get different results when I dereference a pointer after freeing it? Tried it in case of characters as well, what it did that after 8 values the 9th value was ...
0
votes
3answers
97 views

realloc not working for 2-D pointer array

In the following code, I ask the user to give me some strings. I make a 2-D pointer char array, so that I read the input with pointer string which points to the start of a string of length 50. My ...
0
votes
1answer
147 views

adding an element to an array using realloc

I'm trying to use realloc to add an element to an array after inputting characters. Here is my code: #include <stdio.h> #include <stdlib.h> int main(void) { int i, j, ...

1 2 3 4 5 6