Tagged Questions
7
votes
3answers
144 views
Can memset() be called with a null pointer if the size is 0?
For one reason or another, I want to hand-roll a zeroing version of malloc(). To minimize algorithmic complexity, I want to write:
void * my_calloc(size_t size)
{
return memset(malloc(size), 0, ...
4
votes
4answers
3k views
char array vs. char pointer
When receiving data through a socket using recv, I've noticed that, with:
char buffer[4];
memset(buffer, 0, 4);
recv(socket, buffer, 4, 0);
I receive
mesgx��
"mesg" being what I sent, with ...
3
votes
2answers
700 views
“Use of uninitialised value” despite of memset
I allocate a 2d array and use memset to fill it with zeros.
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
void main() {
int m=10;
int n =10;
int **array_2d;
...
3
votes
4answers
610 views
C++ Memory Allocation & Linked List Implementation
I'm writing software to simulate the "first-fit" memory allocation schema.
Basically, I allocate a large X megabyte chunk of memory and subdivide it into blocks when chunks are requested according to ...
2
votes
9answers
182 views
Pass pointer to guaranteed zeroed memory
I need to zero records of varying sizes in a file. To do this, I'm currently allocating dummy records, memseting them to zero, and passing these to a write function.
Is there some region which is ...
0
votes
4answers
200 views
Does using memset and malloc conflict?
char* buf;
buf = malloc(BUFSIZ);
memset(buf ,0 , BUFSIZ);
I think that memset initializes the buf variable with size of BUFSIZ, but malloc also allocates a block of size BUFSIZE of memory and ...
0
votes
3answers
130 views
Can I designate a Java-like 'constructor' in c?
I want to 'construct' (read: malloc and memset) my hashtable in c. To do this, I created a function as follows:
int maketable(struct hash_entry **table, int size){
table = (struct hash_entry ...
-7
votes
2answers
383 views
memset after malloc [closed]
I have three lines (version) of a linux product. V1 works fine in the customer. V2 and V3
crashed and the fix seems to be a memset call after a malloc call.
What is the deeper explanation on this ...