Tagged Questions

3
votes
7answers
234 views

Is it a better practice to typecast the pointer returned by malloc?

For the C code below, compare the defintions of the int pointers a and b; #include <stdio.h> #include <stdlib.h> int main() { int *a=malloc(sizeof(int)); int *b=(int …
4
votes
5answers
92 views

Malloc a pointer to a pointer to a structure array by reference

The code below compiles, but immediately crashes for reasons obvious to others, but not to me. I can't seem to get it right, can anyone tell me how to fix this. *array_ref[2] = array[0]; …
2
votes
4answers
122 views

When to use malloc for char pointers

I'm specifically focused on when to use malloc on char pointers char *ptr; ptr = "something"; ...code... ...code... ptr = "something else"; Would a malloc be in order for something as trivial as …
0
votes
2answers
53 views

Core Data Malloc Errors

Hi there, I've noticed I'm getting a few errors at random points in my app. I've had 2 errors, "double free" and "incorrect checksum for freed object". Heres the stack trace of a "double free" error. …
2
votes
4answers
134 views

Are there compiler flags to get malloc to return pointers above the 4G limit for 64bit testing (various platforms)?

I need to test code ported from 32bit to 64bit where pointers are cast around as integer handles, and I have to make sure that the correct sized types are used on 64 bit platforms. Are there any …
0
votes
6answers
146 views

Opening a file with path in malloc

I'm trying to open a file with fopen, but I don't want a static location so I am getting the string in from the user when he/she runs the program. However if a user does not enter one a default file …
5
votes
5answers
177 views

C: Correctly freeing memory of a multi-dimensional array

Say you have the following ANSI C code that initializes a multi-dimensional array : int main() { int i, m = 5, n = 20; int **a = malloc(m * sizeof(int *)); //Initialize the arrays …
2
votes
3answers
203 views

malloc and free

I am new to C I am trying to get comfortable with malloc + free. I have coded following test but for some reason the memory isn't freed completely (top still indicates about 150MB of memory allocated …
3
votes
3answers
224 views

malloc vs mmap in C

Hi, I built two programs, one using malloc and other one using mmap. The execution time using mmap is much less than using malloc. I know for example that when you're using mmap you avoid …
3
votes
2answers
222 views

Why does my program stop crashing if I call malloc instead of GetMem?

I am calling a C DLL from a Delphi 2009 application and I keep getting errors when memory allocated by GetMem or AllocMem is passed to the DLL. The only way around I could avoid these errors was by …
2
votes
5answers
171 views

Read a file into dynamic memory array using malloc and POSIX file operations [closed]

Possible Duplicate: reading a text file into an array in c Hi, I'm trying to read a file into a dynamic array. Firstly I open the file using open() so I get the file descriptor But then I …
4
votes
8answers
237 views

Custom malloc() implementation header design

I am trying to write a custom allocator for debugging purposes (as an exercise) in C, where I will be using a single linked list to hold together the free list of memory using the First Fit Algorithm. …
0
votes
3answers
81 views

is there a flag “M_FAST” in FreeBSD kernel for Malloc Call ?

if you know there is one, can you let me know what its for ? if not please say so : ) thanks. Signature : void * malloc(unsigned long size, struct malloc_type type, int flags); for example. other …
1
vote
4answers
176 views

Is there a way to determine if free() would fail?

Is there a way to determine if free() would fail if ever called on a certain memory block pointer? I have the following situation: a thread having access to a shared resource fails whilst it may have …
4
votes
6answers
158 views

GUI for a GNU Debugger

Hi, am pretty excited with the GNU Debugger and a GUI called Insight as it has saved me A LOT OF time. Thus I am posting this question/answer for other newbies out there like me having problems with …

1 2 3 4 5 11 next
15 30 50 per page