free is a function to deallocate memory obtained from malloc and other functions in C. Do not use this tag to refer to free software, mention that in the body of your question if relevant.
0
votes
1answer
38 views
How to manage memory returned from function in C
I want to make a tokenization sub-program which will work like this :
Read user input
Find tokens
Use a substring function to get each token
Store each token in a struct
The idea was simple ( i ...
0
votes
3answers
35 views
When to use malloc, is it really necessary
The malloc example I'm studying is
#include <stdio.h>
#include <stdlib.h>
int main()
{
int *vec;
int i, size;
printf("Give size of vector: ");
scanf("%d",&size);
vec = (int *) ...
0
votes
1answer
26 views
c# free nosql embedded database [closed]
I'm looking for some free NoSql c# embedded database solution. It would be perfect if such database supports functionality to construct on program startup from a file stored on the disk and then ...
-1
votes
0answers
17 views
Is there a free persistent fault-tolerant Java caching library? [closed]
I am looking for a free Java caching library with persistence (the data is saved to disk and is available even when the program ends and is restarted later).
I tried ehcache but my problem with it is ...
1
vote
1answer
26 views
free() : no double free detected
I have some problems with free() function:
#include <stdio.h>
#include <stdlib.h>
int main() {
char *a=malloc(24);
char *b=malloc(24);
free(a);
free(a);
}
there is a ...
0
votes
1answer
19 views
Practice website online for free
I have created a simple website using visual studio 2008 and C# for coding.
I have iis v.7.5 installed on my laptop which is running win 7.
Now I am trying to publish it on the internet and I ...
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 ...
0
votes
1answer
19 views
+50
Any free database of English-Spanish words?
I want to make a Vocabulary Trainer and I was thinking about the best way to do it. First I searched some translation APIs to use, to avoid having to build my own dictionary, but I found that most of ...
-3
votes
0answers
46 views
Could you please suggest me open source testing tool for desktop applications? [closed]
Could you please suggest me the open source testing tools for desktop applications?
Because, I need to perform the regression / functional testing thru automation. My company is not interested to buy ...
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
45 views
Free defined String Constants
I'm working on an encryption application which implements an algorithm I made. I have about a year of experience in C and 6 months of experience in C++, but I have 6 years of experience in Visual ...
0
votes
0answers
4 views
Static Map(Free) open URL in bubble in the same browser without new windows
Is it possible to open URL in bubble in the same browser without new windows for Free static map?
1
vote
2answers
42 views
Freeing a reference vs freeing a pointer? Can we tell whether an argument is a reference or a pointer?
I have a structure, like
typedef struct {
void* data;
int index;
} Node;
and I have some lines like
Node* node = (Node*)malloc(sizeof(Node));
enqueue(&list, node);
Then I have a ...
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
1answer
18 views
Aborted (core dump) error while using free()
I got this unwanted output at the end of a successful execution of my program while freeing the dynamic memory that was allocated dynamically.
*** glibc detected *** /home/ahor/Desktop/Project ...
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
68 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 ...
0
votes
1answer
38 views
How can we implement the “time-limited free” feature in Android app?
My situation is, I have implemented an in-app billing product "remove ads" in my app for 0.99.
Now I wanna make it be free in a period of time for advertisement.
However, google play console not ...
-1
votes
4answers
52 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;
}
...
-3
votes
0answers
11 views
free/trial cloud RDS service [closed]
I need a MySQL RDS, or other RDS, system to store database which is constructed from ETL application on the cloud. I donot have any credit card, and I must build this database on the cloud with ETL ...
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
62 views
SIGTRAP when freeing first element of a Queue
I'm in trouble, everytime my function calls "desenfileirar" I had some breakpoints. Can anyone help me? I need to print a bidimensional array that means the path traveled by an ant. It needs to start ...
0
votes
1answer
25 views
Linux amount of swap displayed by “free” is different from “smem”
I am trying to analyze from where the amount of swap is from, and looking at smem display I get a completely different amount of swap usage.
Free shows the following :
[root@server1 ~/smem-1.3]# ...
0
votes
2answers
42 views
Is it possible that another program reuses free memory once allocated and later freed by other program already running?
Let’s suppose that I have a Linux (64 bits, Kernel 2.6, glibc 2.4) OS running on a machine with 8Gb of RAM. All referenced programs are C implementations.
Program A is started and let’s say that it ...
0
votes
0answers
12 views
Sample product data and content for sample website
Hi, I need to build a sample site for our portal and need some help finding some free product data, content and imagery to download.
Can anyone recommend a good site?
0
votes
2answers
72 views
Simple test of malloc and free with int pointer causes double free or corruption error
To learn more about pointers I wrote just a simple test function which creates a pointer, allocates space ande after some output on the shell the space shall be freed.
void main() {
int *p = (int*) ...
0
votes
1answer
30 views
Free() segfault on PIC24
I have two 16-bit pointers being allocated at runtime, in order to save some long doubles to flash (using the Microchip DEE flash emulation library). The code works fine, and recalls saved values ...
-3
votes
0answers
34 views
How to setup a system so I can send out sms for free?
I'm from Singapore.
I am trying to setup something which can let me send out sms free.
Sending out through my pc and /or my existing mobile phone.
My main objective is to get people to send sms ...
0
votes
3answers
31 views
How to properly use free for specific struct type in C
I have looked through the other discussion and still cannot figure this out. I have a struct,
typedef struct { char * word; int count; } wordType;
In my code, I malloc each array[index].word and ...
0
votes
1answer
31 views
Getting null values in my array of struct in c, improper freeing
I had my program printing out the words in a file and incrementing when they appeared more than once. I am now getting just "NULL" and the count as "17" instead. I can't find anything that I changed ...
0
votes
0answers
16 views
realloc an array of structs and then freeing up the memory in c
So my program has two problems both based on dynamically allocating memory in c.
Basically I take a file in, store the words to an array of structs or increment the counter of the struct if the word ...
0
votes
1answer
40 views
Segfault when freeing/deallocating buffer
I'm having a problem when I try to deallocate a buffer.Every time I try to pass the buffer to my deallocate method, a segfault occurs. Valgrind confirmed that the segfault was located in the ...
0
votes
1answer
41 views
Dynamic allocating in C
I am having trouble with dynamic allocating. My program needs to take in a text file, take in each word, and put them into an array while counting repeated words. I think that I am malloc-ing the ...
1
vote
1answer
60 views
C free() double free or corruption (global array)
Here is a struct in header-file:
typedef struct Missile {
int id;
Model *model;
Point3D coords;
int counter;
float speed;
float yaw;
float pitch;
float roll;
} ...
0
votes
4answers
54 views
Error while freeing a malloc'd array of structs
I'm having issues freeing a temporary array of structs used for doubling the size of another array. I don't seem to have any issues freeing the original array.
void foo(StruName **structName,i nt ...
3
votes
1answer
66 views
malloc not allocating properly with pointer to pointer
I am trying to create a function that allocates memory of a certain specified size. In the main, I create the pointer and then send the pointer and the size to the function for memory to be allocated. ...
0
votes
4answers
50 views
How to safely free memory using a pointer which has been adjusted
I am adjusting a pointer for an array to avoid copying all the contents of the array backwards. The problem is I want to free the data at some point, which will generate a segmentation fault unless I ...
0
votes
1answer
56 views
How to assert that memory is freed
I have a function in which there is a free of memory.
and I want after calling this function assert that the function has freed the given memory.
And I could not change any thing in this function.
...
1
vote
4answers
70 views
Strange behavior for 'free' in C
I was writing a code to check if two functions I wrote to allocate and deallocate memory worked. The two functions were essentially
int createBaseName(char ***imageName, char **groupName, char *name)
...
0
votes
2answers
42 views
Can't free/deallocate space in my pop function?
Here is my code for pop:
int pop (struct_of_ints *head_node){
int val;
if (head_node == NULL){
fprintf(stderr, "Empty stack.\n");
return -1;
}
else {
struct_of_ints *curr;
...
2
votes
1answer
60 views
Freeing dynamically allocated memory in a tree
I'm trying to free memory that I allocated with malloc, but free is giving the error:
malloc: *** error for object 0x100100800: pointer being freed was not allocated
*** set a breakpoint in ...
0
votes
4answers
65 views
How to free memory allocated in a function
As in subject of this topic. I have a simple function:
char *to_str(int x)
{
char *s = malloc(6);
if (s == NULL) {
error("malloc");
}
snprintf(s, sizeof(s), "%d", x);
...
0
votes
1answer
30 views
Web services which offer free data in JSONP format
For example, Google provides dictionary definitions for English words in JSONP format from the following URL:
...
-1
votes
2answers
35 views
C: “Invalid free(): Address 0x7feffee08 is on thread 1's stack”
This is not my exact code, but it is like this in essence. I'm trying to create a stack variable in main()
int **x;
that I want to pass to a function foo(int **x, arg1, arg2, ...). On some ...
0
votes
1answer
47 views
OpenHashing Segmentation Fault
first off thanks for taking the time to read through this and opening it up. I am basically done with this code and I believe everything is nearly perfect except I am getting a segmentation fault. It ...
0
votes
1answer
83 views
Extracting text from a PDF file,need free library
I need to extract text from pdf file. I need a free library for use in comercial programe(c#).
I found a few solutions but they do not fit me:
IFilter - must be placed in the windows filter from ...
1
vote
1answer
47 views
Conditional heap free
So, i have this situation. A termination handler and some pointer to struct previously alloc'd on heap.
What i want to do is to use the handler to selectively free them: for each pointer if the ...
0
votes
2answers
64 views
How to use the free function on int* pointers in C
This is my code:
int size;
int *p1;
scanf("%d",&size);
p1 =(int*)malloc(sizeof(int)*(size-1));
for (i=0;i<size;i++)
scanf("%d",&p1[i]);
free(p1);
The program runs perfectly ...
2
votes
2answers
82 views
How can I implement simple serverless p2p browser to browser messaging with minimal overhead?
I'm trying to create some basic implementations of simple games (tic tac toe is the starting project) which can be played over the internet without requiring a central server. The page would not even ...
-1
votes
2answers
69 views
c free struct pointer [closed]
struct trapframe {
u_int32_t tf_vaddr; /* coprocessor 0 vaddr register */
u_int32_t tf_status; /* coprocessor 0 status register */
u_int32_t tf_cause; /* coprocessor 0 ...





