3
votes
7answers
233 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
121 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
51 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
133 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
145 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 …
3
votes
3answers
222 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 …
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 …
2
votes
5answers
167 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 …
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
…
3
votes
2answers
221 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 …
0
votes
5answers
154 views
using malloc for char inputs in C
For an assignment, I have to declare a struct as follows:
struct Food
{
char *name;
int weight, calories;
} lunch[5] = {
{
"apple", 4, 100
},
{
"salad", 2, 80
}
};
…
4
votes
8answers
235 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. …
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 …
2
votes
4answers
67 views
Does exiting from a pthread release malloced memory ?
Let's say I pthread_create and then pthread_detach it. Now, from within the thread function, I malloc some block.
When the thread exits, will the malloc'ed memory be freed automatically?
(been …
