Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7910017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:41:34+00:00 2026-06-03T12:41:34+00:00

int test_malloc(void **ptr, size_t size) { (*ptr) = malloc(size); return 0; } int test_app()

  • 0
 int test_malloc(void **ptr, size_t size)
 {
    (*ptr) = malloc(size);
    return 0;
 }

 int test_app()
 {
   char *data = NULL;
   int ret = 0;
   ret = test_malloc((void **)&data, 100);
 }

Compiler: gcc 4.1.2

Among others, I am using -O2 & -Wall which are I think are turning on some options which checks for this.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T12:41:41+00:00Added an answer on June 3, 2026 at 12:41 pm

    You have a variable of type char*, and in test_malloc you are modifying it through an lvalue of type void *, which breaks strict aliasing rules.

    You could solve it like this:

     int test_app()
     {
       char *data = NULL;
       void *void_data = NULL;
       int ret = 0;
       ret = test_malloc(&void_data, 100);
       data = (char*)void_data;
     }
    

    But even better is to make test_malloc return void* to avoid problems like this.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

#include <stdio.h> #include <GL/gl.h> #include <GL/glut.h> #define KEY_ESCAPE 27 void display(); void keyboard(unsigned char,int,int);
I have a small sample function: #define VALUE 0 int test(unsigned char x) {
class test{ int x; public: //public functions getx() and putx() }; void main() {
Say I have a test like: void TestSomething(int someParam) { // Test code }
test.c: int main() { return 0; } I haven't used any flags (I am
I have a struct struct request { int code; char *message; }; that I'd
I got this message: expected 'void **' but argument is of type 'char **'
I have a simple struct: typedef struct { void *things; int sizeOfThings; } Demo;
i'm trying to pass data with void pointer and then cast it to (pData
This question is null and void! I was not properly freeing the Students! I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.