The malloc function performs dynamic memory allocation in C and is part of the standard library.

learn more… | top users | synonyms

-2
votes
1answer
18 views

gnu gdb malloc return inaccessible pointer [closed]

malloc in gdb debug session returns inaccessible address after running some codes. first break at the start of main function. everything is ok. Breakpoint 9, main (argc=5, argv=0x7fffffffe418) at ...
0
votes
0answers
4 views

malloc hang or deadlock on CentOS

I am developing some process in c. I have got the problem of malloc hang or deadlock on Centos I am stuck in it, Can anybody help and advise for it? thanks in advance .. here is the stacktrace of ...
-2
votes
1answer
42 views

B+ tree in C++ with malloc()

I have a question about B+ tree implementation with C++ (qt). I have a node struct like struct node{ int keys[MAX_KEY]; int numberOfKeys = 0; node *pointer[MAX_KEY + 1]; bool isLeaf = ...
0
votes
0answers
17 views

I'm having trouble compiling ptmalloc2

I downloaded ptmalloc2 from http://malloc.de/malloc/ptmalloc2-current.tar.gz and extracted it into a folder. But when I type make I get In file included from malloc.c:1484:0: malloc.h:72:0: warning: ...
0
votes
1answer
44 views

Read binary file, save in buffer, print out content of buffer

I have a big problem that need's to be solved before I can continue with my program. I have to open a binary file, read it's content, save the content into a buffer, allocate space on the heap with ...
0
votes
0answers
13 views

Potential error in Data Structure ans algorithm analysis in c Mark Allen Weiss

I am so confused when I'm reading the following part in the book "Data Structure ans algorithm analysis in C" written by Mark Allen Weiss, because there seems to be a mistake in its original ...
0
votes
5answers
67 views

How to initiate static pointer with malloc in C?

I'm trying to initiate a static variable (inside a function) with malloc in C, but I'm getting the "initializer not constant error". I know that I can't initiate a static with non constants in C, but ...
2
votes
2answers
54 views

Multidimensional arrays allocated through calloc

I have a question about how memory is allocated when I calloc. I had a look at this question, but it doesn't address how memory is allocated in the case of a dynamically allocated two dimensional ...
0
votes
3answers
79 views

c++ malloc() keeps assigning to same memory address

I'm trying to create "nodes" iteratively using memory. My code currently just says what address it goes to, and does not actually try to make the links in the linked list. Here's the code for a ...
6
votes
3answers
158 views

What is C++ version of realloc(), to allocate the new buffer and copy the contents from the old one? [duplicate]

In C we used malloc(), free(), but in C++ youare using new, delete, but in C we also have realloc, which will alloc the new block and copy the old data (common minimum) and then free the old data ...
0
votes
2answers
61 views

Sequence Stack: uninitialized value was created by a heap allocation

Just now I wrote a simple data structure Sequence Stack in c, and met a problem. ==8142== Use of uninitialised value of size 4 ==8142== at 0x408F4AB: _itoa_word (_itoa.c:195) ==8142== by ...
0
votes
2answers
54 views

dynamically allocating an array of linked lists

So I'm trying to make an array of linked lists, at first I had the following code: typedef struct node{ int data; struct node *next; } node; struct ko { struct node *first; struct ...
0
votes
3answers
41 views

Using String and Pointer with malloc

I cannot figure out why this program is not working. I got Access Violation message when trying to push a variabel with the type of data is string to another variable that had allocated at memory with ...
0
votes
1answer
23 views

CUDA (nested?) memory allocation

I am optimizing some code using CUDA. I am not sure if I should use cudaMalloc inside _ _ global _ _ function (fun1) or not (isn't x already allocated on GPU's memory?): __global__ void fun2(double ...
0
votes
1answer
14 views

Assertion failure :: malloc

I am running code in a coding site and got following error: solution: malloc.c:2369: sysmalloc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof ...
-6
votes
0answers
31 views

Dynamically allocating space for a new ArrayList (C) [closed]

the function ArrayList *createArrayList(int length); is supposed to dynamically allocate space for a new ArrayList. Initialize its internal array to be of length length or DEFAULT_INIT_LEN, whichever ...
5
votes
1answer
108 views

malloced array VS. variable-length-array

There are two ways to allocate memory to an array, of which the size is unknown at the beginning. The most common way is using malloc like this int * array; ... // when we know the size array = ...
1
vote
4answers
67 views

Memory management scope in C/C++

When freeing memory in C and C++, do I only need the memory address or does it require any specific variable? So if I were to do something such as: int* test() { int* x = new int(5); return ...
2
votes
2answers
77 views

Allocating memory for array in struct (in C)

I need to define a type-struct in C that contains an array to be malloc'd as: #include <stdio.h> #include <stdlib.h> typedef struct mine { int N; double *A; } mine; int main(int ...
1
vote
5answers
81 views

is there any consequence if I do assignment but not memcpy after malloc

in the following program: int main() { struct Node node; struct Node* p = (Struct Node*) malloc(sizeof(struct Node)); *p =node; printf("%d\n", *p->seq); } usually I did memcpy(p, node, ...
0
votes
1answer
44 views

Allocate memory for huge node tree dynamicly

I'm trying to make a function that allocates memory in blocks and than is able to assign a memory pointer for different structures linked together. #define MEMSIZE 50*1024*1024*sizeof(char) #include ...
1
vote
1answer
42 views

How to override general malloc so I get line number printed in memory leak printout

I have written some utility code to detect memory leaks when a program closes. detect_leaks.hpp and cpp contain the function which sets things up and in a program you would just call the ...
0
votes
1answer
28 views

Memory allocation

I have a base class and a derived class. Things work well with this setup. I have added another class in base class, so its a nested class. On allocation of memory for the new nested class, I see some ...
1
vote
1answer
24 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
36 views

Unhandled exception at at 0x76194B32 in ConsoleApplication3.exe: Microsoft C++ exception: std::bad_alloc at memory location 0x00B9F608 [closed]

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
80 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
61 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
13 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
28 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
77 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
91 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> ...
2
votes
0answers
35 views

Calling the R function .C() continually with static vectors, do you need to keep coercing datatypes?

I have googled this problem and looked in R extensions manual, but could find no information on it. I have a reasonably large program which makes many calls to C code with .C. I am passing in quite a ...
0
votes
1answer
56 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
70 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
47 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
85 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
60 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
69 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
67 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
98 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
93 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
49 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
44 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
51 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
53 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
48 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
74 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 ...

1 2 3 4 5 43