Issue information

Issue ID
#936
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Feb 7, 2008 12:09
Last Post
Hercules Elf Bot
Feb 7, 2008 12:09
Confirmation
N/A

Hercules Elf Bot - Feb 7, 2008 12:09

Originally posted by [b]Ai4rei[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=936

Affected code in src/map/itemdb.c:
CODE
/*==========================================
* read item group data
*------------------------------------------*/
static void itemdb_read_itemgroup_sub(const char* filename)
{
    FILE *fp;
    char line[1024];
    int ln=0;
    int groupid,j,k,nameid;
    char *str[3],*p;
    char w1[1024], w2[1024];
    
    if( (fp=fopen(filename,"r"))==NULL ){
        ShowError("can't read %s\n", line);  // <-- 'line' is not initialized
        return;
    }