view test/mex/bug_54096.c @ 31200:075443476dfb stable

nextpow2.m: Add bug number tag to regression BIST tests (bug #62947) * nextpow2.m: Add '<*62947>' to BIST tests for bug #62947.
author Rik <rik@octave.org>
date Wed, 24 Aug 2022 08:55:14 -0700
parents e255f09dc70e
children
line wrap: on
line source

#include "mex.h"

static const char* field_names[] = {"field"};

void mexFunction (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
  mxArray *tmp_val;

  plhs[0] = mxCreateStructMatrix (1, 1, 1, field_names);

  mxSetFieldByNumber (plhs[0], 0, 0, NULL);

  tmp_val = mxGetFieldByNumber (plhs[0], 0, 0);

  if (tmp_val)
    mexErrMsgTxt ("struct elements set to NULL should be NULL internally");

  /* But in the interpreter, they should appear as [].  */
}