From 90299e3df5c5d5eb4ae2189b11e44ec83995ca62 Mon Sep 17 00:00:00 2001 From: ticktock35 Date: Mon, 15 Dec 2008 00:18:11 -0500 Subject: opkg: (leak fixing, day 1) lots and lots of memory leaks fixed git-svn-id: http://opkg.googlecode.com/svn/trunk@114 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'libopkg/hash_table.h') diff --git a/libopkg/hash_table.h b/libopkg/hash_table.h index 388a966..d4e8a3d 100644 --- a/libopkg/hash_table.h +++ b/libopkg/hash_table.h @@ -22,7 +22,7 @@ typedef struct hash_entry hash_entry_t; typedef struct hash_table hash_table_t; struct hash_entry { - const char * key; + char * key; void * data; struct hash_entry * next; }; -- cgit v0.9.1