The malloc function performs dynamic memory allocation in C and is part of the standard library.
0
votes
1answer
15 views
Malloc ARENA size - how does that change the behaviour of malloc()
I want to know more about MALLOC_ARENA_SIZE - environment variable , which changes the allocation done by malloc() / mmap()
My code currently had the default value of 32kb and was running into some ...
1
vote
1answer
23 views
Size of type and memory allocation [duplicate]
I've got a trouble with dynamic memory allocation.
Somehow, actual size of my struct (sum of all the parts) is less than size of the type itself. Here is the code:
#include <stdio.h>
#include ...
0
votes
0answers
34 views
Unhandled exception at at 0x76194B32 in ConsoleApplication3.exe: Microsoft C++ exception: std::bad_alloc at memory location 0x00B9F608
I don't know what's wrong and here is my code
Thanks for help in advance
I've searched on the internet and It's saying memory heap or bad allocation of memory
I'm using Process *proc = new ...
0
votes
1answer
78 views
Malloc seemingly using less memory than new[]
Could there be any reason why:
new X[n];
would consume more memory as compared to:
X* x = reinterpret_cast<X*>(malloc(n * sizeof(X))
for(X* p = x; p != x + n; ++p)
new (p) X();
for ...
0
votes
2answers
54 views
Assigning values to 2D array created using malloc
I created a 2D character array using malloc and have been trying to assign its values to '\0'.
char **predicate_array = malloc(no_of_lines_in_data_map);
for(int i = 0; i < ...
0
votes
2answers
12 views
malloc large memory never returns NULL
when I run this, it seems to have no problem with keep allocating memory with cnt going over thousands. I don't understand why -- aren't I supposed to get a NULL at some point? Thanks!
#include ...
1
vote
1answer
24 views
Error: ZwAllocateVirtualMemory Failed
In C when allocating memory,
char * undecoded_query_array = (char*) malloc(100);
I am receiving the following error:
warning: ZwAllocateVirtualMemory failed c0000018 for heap 006D0000 (base ...
0
votes
3answers
74 views
malloc on char** read and write Error
I have an char** stringList, in which i want to write Strings of unknown size and count.
at some point i have the following code:
static char** stringList;
static int laenge=0;
static int size=0;
...
1
vote
1answer
88 views
Linux c application memory usage
I have C Linux application which continuously allocates and frees memory (around 200 alloc/free per sec) using malloc, calloc, realloc & free functions. Even though all allocated memory are freed ...
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>
...
0
votes
1answer
54 views
Linked Lists and structs
I'm working on a school project and I'm trying to understand doubly linked lists and structs a bit better. Currently, I'm trying to implement a function, one that creates a new linked list. Because I ...
0
votes
1answer
18 views
Malloc in openssl
I got a problem when I encrypt a data with aes encryption.
this is the source code:
std::string aes_encrypt( std::string text, std::string password ){
EVP_CIPHER_CTX ectx;
std::string key ...
0
votes
4answers
59 views
Why am I getting segmentation fault for malloc() while using pointer to pointer?
I don't understand why this works:
void main() {
int * b;
b = (int *)malloc(sizeof(int));
*b = 1;
printf("*b = %d\n", *b);
}
while this does not (gets segmentation fault for the ...
0
votes
3answers
41 views
malloc matrix which points to malloc arrays(C)
EDIT: I should not use [].
I have defined integer N with value 5 and *malloc.
#define N
void* malloc (size_t size);
...
int *p_mat=(int*)malloc(sizeof(int*) * N);
This is the matrix.
Now we ...
0
votes
3answers
79 views
Understanding pointers in a structure and malloc
I am just learning C (reading Sam's Teach Yourself C in 24 hours). I've gotten through pointers and memory allocation, but now I'm wondering about them inside a structure.
I wrote the little program ...
0
votes
3answers
50 views
In C,is casting to (void*) not needed/inadvisable for memcpy() just as it is not needed for malloc()?
I have some confusions about what I read from the following site about memcpy()(and malloc()):
http://www.cplusplus.com/reference/cstring/memcpy/
In that page,the following 2 lines are clearly ...
0
votes
3answers
67 views
Output wrong. Possible strncpy issue?
So, I'm trying to get this code to parse each line inputted from the file into individual tokens, then add each one in turn to tklist array. Then the main just prints out each token. It's printing ...
0
votes
1answer
65 views
Correct use of Malloc and free with c++ pointers
Sorry if this question comes across as trying to take the easy way out, but I really think I just need some clarification. I'm trying to use malloc and free. I thought I understood them, but the ...
2
votes
7answers
83 views
Does “ptr=malloc(sizeof(char)*10)” use many times,one after another allocate pointer to same memory block or cause memory leak?
Suppose I have the following piece of code in my program:
char *ptr;
ptr=malloc(sizeof(char)*10);
ptr=malloc(sizeof(char)*10);
ptr=malloc(sizeof(char)*10);
ptr=malloc(sizeof(char)*10);
Will a ...
3
votes
1answer
87 views
Using pthreads and malloc
I asked a question Using sockets in multithread server yesterday. In this question I described segmentation fault under Solaris in multithreaded server. Now I have found the core of error and written ...
-3
votes
0answers
46 views
Trying to coalesce malloc implementation [closed]
Before i Start off, this is an assignment for school. We are to build a malloc, realloc and free implementation. I tried to make a coalesce function but have failed miserably. My coalesce function is ...
0
votes
2answers
40 views
Card game issues - memory and odd values
I got the most parts working, including randomizing and shuffling, but when it comes to allocating the right face / suit values, I can't get it right. Also, I'm getting 'Aborted (core dumped)', ...
-1
votes
4answers
50 views
C free variables declared inside function
Imagine this code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAXSTRSIZE 2048
int main()
{
char *str;
str = get_string();
return 0;
}
...
2
votes
1answer
49 views
Loop allocation of linked list inside inline struct not allocating memory
I have strange problem with allocating a linked list in a loop.
Consider a simplified source code :
struct main_s {
minor_s minor_structure; (inline)
};
struct minor_s {
list_s *first_dir;
...
0
votes
1answer
45 views
Memory allocation and core dump for pointers to structures in c
Sorry I'm new to memory allocation and structure (so most probably it's some silly thing I've missed). I've got the following code which is core dumping on Solaris. I'm not also sure how to add more ...
0
votes
3answers
64 views
C pointers, free memory
I have these structures:
typedef struct memory_slice {
size_t startAdd; //Start of slice
size_t dim; //Dim in bytes
void *slice; //Chunk of memory
struct memory_sclice *next; //Next ...
0
votes
1answer
69 views
How to allocate memory using this malloc statement?
I have this method that reads a file. A matrix to be more specific where the first two numbers are the rows and the columns. However when i try to allocate the memory using malloc and using the rows ...
0
votes
1answer
31 views
Is a malloc'ed buffer still on the allocated list?
When I implemented my own version of malloc() in college, I used two linked lists: A free list and an allocated-buffers list (interspersed with calls to sbrk when I ran out). But now I have ...
0
votes
3answers
45 views
Initialising a 2d-array with zeros; printing its values reveals that not every element contains a 0
I already searched for an answer here, but I couldn't find something that suits my case.
I have a function make_array(), which generates a 2-dimensional array, and has to fill it with zeros.
When ...
0
votes
1answer
25 views
__NSCFString appendString: crash for NSMutableString in Cocoa
I have been facing this issue and I admit that I lack of some fundamental concepts of memory managements. I've not been able to solve this and trust me, I've been trying so many things out.
In my ...
1
vote
4answers
58 views
C: Incompatible type on dynamic array of pointers of structure
I need help to declare a dynamic array of pointers.
A read some articles and similar questions about it and I try to do it for my project but still frozen.
What I'm trying to do:
typedef struct ...
-2
votes
2answers
67 views
Segmentation fault (core dumped) while running the program
#include<stdio.h>
#include<string.h>
#include<malloc.h>
//#include<conio.h>
struct list
{
char *value;
struct list *link;
};
struct list *arr[12];int val;
int hf(char *item)
{
...
0
votes
2answers
50 views
App crashes while finding elements in array
The input file is in.wav. I have to read chunks (succeeded) and to read samples to normalize the audio file...
The problem is that it crashes while trying to fing the max and min values of .wav ...
1
vote
3answers
47 views
Char Doubly-linked list
I've created a structure and function for a doubly linked list. It works flawlessly for integers but now I have to convert it to use characters. I've always had a problem when it comes to characters, ...
0
votes
0answers
41 views
openmp crashing when using more than 1 thread
I have this piece of code and I'm trying to parallelize the execution of the for loop. It works ok if using just one thread, but it crashes when using more than 1 thread calling the function runTest.
...
-1
votes
4answers
72 views
The amount of time malloc allocated memory can be used for?
I'm abit curious on time limitations for using dynamically allocated memory. Say, for a system that is expected to run for weeks at a time, would it be safe to initially malloc memory for certain use ...
0
votes
0answers
32 views
'Segmentation fault' with pthreads and arrary of pointers
Ok, I've hit a wall with my program. I am using pthreads to implement a parallel program, but I have come into a "Segmentation fault" with this block.
//This is all in the main function
//{{{{{
...
0
votes
0answers
33 views
MySQL++ malloc_error_break on mysqlpp::Query::store()
Buckle-up for this one.
It's weird I can't find anything online about an error like this but it's driving me nuts. Hopefully you guys can shed some light on the issue.
I'm using MySQL++ to get some ...
0
votes
2answers
40 views
Is it possible that another program reuses free memory once allocated and later freed by other program already running?
Let’s suppose that I have a Linux (64 bits, Kernel 2.6, glibc 2.4) OS running on a machine with 8Gb of RAM. All referenced programs are C implementations.
Program A is started and let’s say that it ...
0
votes
1answer
105 views
qt malloc(): smallbin double linked list corrupted
In my Qt widget I sometimes get this error:
malloc(): smallbin double linked list corrupted
It does not happen all the time but I think I have narrowed it down to when it starts.
I have a ...
-1
votes
2answers
76 views
local variable memory and malloced memory location [closed]
I was playing up with malloced memory and local variables to see how stack and Heap grows. From my understanding heap grows upwards and the stack grows downwards. All the memory allocated using malloc ...
0
votes
1answer
73 views
Dereferencing Pointer in Dynamic Array in C
I have two arrays, each initialised as follows:
struct file_descriptor *list1 = (struct file_descriptor *)malloc(4096 * sizeof(struct file_descriptor));
struct file_descriptor *list2 = (struct ...
0
votes
2answers
68 views
Simple test of malloc and free with int pointer causes double free or corruption error
To learn more about pointers I wrote just a simple test function which creates a pointer, allocates space ande after some output on the shell the space shall be freed.
void main() {
int *p = (int*) ...
0
votes
1answer
30 views
Free() segfault on PIC24
I have two 16-bit pointers being allocated at runtime, in order to save some long doubles to flash (using the Microchip DEE flash emulation library). The code works fine, and recalls saved values ...
0
votes
1answer
40 views
dynamic 2d char array allocation not working correctly
I am trying to make a 2d char array of dynamic size. Whenever I allocate the memory, the inner array always ends up being the same size as the outer array.
char **memory;
int outer = 1000;
int inner ...
0
votes
1answer
38 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
30 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
63 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 ...
1
vote
2answers
47 views
Reading strings from file into dynamically allocated array in C
I'm trying to learn C and can't seem to figure out how to read in strings from a file into an array. I have a 2D array of chars as an array of strings and try to read those in by using malloc but I ...
0
votes
2answers
45 views
Trouble with dynamic input program in C
I am having debugging my program and I cannot seem to find any answers. My program takes in a file, copies the words to a dynamic array and keeps a word count for multiples.
Problem 1) For what I ...




