从指针传递的结构显示错误的值

时间:2019-05-07 12:12:37

标签: c pointers memory struct

我有一个变量struct employee,我使用malloc在堆上对其进行了初始化。我正在使用*tmp从指针传递此变量,如下所示。问题在于一旦传递给函数的变量值是错误的。我认为这与指针有关,但是我找不到错误。我想我忘记了有关指针的基本知识。对我来说,我要传递由struct employee指向的变量*tmp(而不是像通过指针那样传递其地址)。看不到那里有什么问题。

如果我在createEmployee()函数中或调用它后检查该值,则它们是正确的,但不在isInformationValid(employee e)中。如果更改代码并传递指向该函数的指针,则一切正常。

typedef struct employee{
  char nom[MAX_NAME_LEN];
  char prenom[MAX_NAME_LEN];
  unsigned short badge;
  unsigned long secret;
  time_t lastAccess;
} employee;

typedef struct maillon maillon;
struct maillon{
  maillon* next;
  maillon* prev;
  employee* e;
};

typedef struct e_list{
  maillon* m;
} e_list;
[...]
int isInformationsValid(employee e){
  int invalidName = (strlen(e.nom) <= 2 || strlen(e.prenom) <= 2); // Problem here
  int invalidBadge = (e.badge < 1000 || e.badge > 9999); // Problem here. e.badge taken as "25789" when I input "1010"
  if(invalidName) { errno = EPERM; perror("Name length must be > 2"); return -1; }
  if(invalidBadge) { errno = EPERM; perror("Badge must be 4 digits"); return -1; }
  return 0;
}

employee* createEmployee(){
  employee* tmp = calloc(1, sizeof(employee*));
  getString("A man needs a last name : ", tmp->nom, MAX_NAME_LEN);
  getString("A man needs a first name : ", tmp->prenom, MAX_NAME_LEN);
  getDigits("Badge (4 digit) : ", &tmp->badge, "%hu");
  getDigits("Secret : ", &tmp->secret, "%lu");
  time_t t = time(NULL);
  tmp->lastAccess = t;
  if(isInformationsValid(*tmp) == -1){ // Passing addr of the struct
    return NULL;
  }
  return tmp;
}

我想念什么?我在任何初始化中都做错了什么吗?还是我错过了关于指针的基本知识?

我看到关于stackoverflow的其他问题也有类似的问题

我只能阅读其他问题的唯一答案就是忘记了堆上的动态分配,这就是我认为我正在做的事情(也许是错误的方法)。

编辑

我做错了。

1 个答案:

答案 0 :(得分:2)

您正在分配employee *的大小,但是您应该分配employee(或*tmp)的大小。