Tagged Questions

2
votes
5answers
143 views

bring malloc() back to its initial state

Do you know if there is a way to bring back malloc in its initial state, as if the program was just starting ? reason : I am developing an embedded application with the nintendods devkitpro and I …
0
votes
3answers
73 views

Unit testing C library, memory management.

I am working on a quite large C library that doesn't have any tests now. As the API starts to be final, I'd like to start writing unit tests. Nearly all my functions acts on the first parameter (a …
2
votes
7answers
862 views

Using Malloc Hooks

I am trying to use a malloc hook to create a custom function my_malloc(). In my main program when I call malloc() I want it to call my_malloc() can someone please give me an example on how to do this …
0
votes
2answers
28 views

double free error with pointer to array of mpz_t

Hi, I'm currently learning libgmp and to that end I'm writing a small program which find prime factors. My program calls a function which fills an array with a varying amount of mpz_t integers, prime …
0
votes
3answers
124 views

Effect of filling memory allocated by malloc()

Although I was able to correct my program and make it run properly, the reason why it wasn't working left me really curious. I made a string with malloc and initialized it...then I did several strcat …
10
votes
18answers
804 views

Setting variable to NULL after free …

In my company there is a coding rule that says, after freeing any memory, reset the variable to NULL. For example ... void some_func () { int *nPtr; nPtr = malloc (100); free (nPtr); …
0
votes
7answers
160 views

SIGSEGV, (seemingly) caused by printf

First and foremost, apologies for any cross-posting. Hope I'm not repeating an issue here, but I was unable to find this elsewhere (via Google and Stack Overflow). Here's the gist of the error. If I …
3
votes
3answers
307 views

Memory allocation and deallocation across dll boundaries

I understand that memory allocations made in one dll then subsequently free'd in another can cause all sort of problems, especially regarding the CRT. These sorts of problems are especially …
3
votes
7answers
259 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
105 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]; …
0
votes
2answers
60 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
138 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 …
2
votes
4answers
146 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
154 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 …
0
votes
3answers
83 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 2 3 4 5 11 next
15 30 50 per page