链表读取访问权限错误

问题遇到的现象和发生背景
用代码块功能插入代码,请勿粘贴截图
我的解答思路和尝试过的方法
我想要达到的结果#include

一直显示读访问权限冲突,不知道是为什么

#include
#include
#include
typedef struct node {
    int data;
    struct node* next;
}node, * Linklist;
void creatList_1(node* l, int n) {//头插法
    node* p;
    int i,j;
    p = NULL;
    l = (Linklist)malloc(sizeof(node));
    l->next = NULL;
    for (i = n;i > 0;--i) {
        p = (Linklist)malloc(sizeof(node));
        scanf_s("%d", &j);
        p->data = j;
        p->next = l->next;
        l->next = p;
    }
}
void PrintList(node* l) {
    printf("内容为:");
    while (l->next != NULL)
    {
        printf("%d ", l->next->data);
        l = l->next;
    }
    printf("\n");
}
void main() {
    Linklist La;
    La = (node*)malloc(sizeof(node));//动态分配内存
    creatList_1(La, 7);//头插法,倒序
    PrintList(La);
}

img

12行删掉啊