mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-05 21:07:52 +00:00
ifblock: fix clash with specials when freeing objects
Murphy hit me again: in my naive attempt to fix the clash between ifblocks and objects parsing text objects due to the double use of the 'sub' field, I overlooked this problem with reusing the 'special_data' field. So here comes the real thing (TM), donating ifblocks their own field for pointing to the jump target.
This commit is contained in:
parent
44f76f4876
commit
70e5afe5ac
@ -801,7 +801,8 @@ void generate_text_internal(char *p, int p_max_size,
|
|||||||
*/
|
*/
|
||||||
#define DO_JUMP { \
|
#define DO_JUMP { \
|
||||||
DBGP2("jumping"); \
|
DBGP2("jumping"); \
|
||||||
obj = obj->special_data; \
|
if (obj->ifblock_next) \
|
||||||
|
obj = obj->ifblock_next; \
|
||||||
}
|
}
|
||||||
|
|
||||||
#define OBJ(a) break; case OBJ_##a:
|
#define OBJ(a) break; case OBJ_##a:
|
||||||
@ -1167,7 +1168,7 @@ void generate_text_internal(char *p, int p_max_size,
|
|||||||
* Do Ninja jump here: without leaving traces.
|
* Do Ninja jump here: without leaving traces.
|
||||||
* This is to prevent us from stale jumped flags.
|
* This is to prevent us from stale jumped flags.
|
||||||
*/
|
*/
|
||||||
obj = obj->special_data;
|
obj = obj->ifblock_next;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
OBJ(endif) {
|
OBJ(endif) {
|
||||||
|
18
src/core.c
18
src/core.c
@ -1336,7 +1336,6 @@ int extract_variable_text_internal(struct text_object *retval, const char *const
|
|||||||
void free_text_objects(struct text_object *root, int internal)
|
void free_text_objects(struct text_object *root, int internal)
|
||||||
{
|
{
|
||||||
struct text_object *obj;
|
struct text_object *obj;
|
||||||
char type_is_if;
|
|
||||||
|
|
||||||
if (!root->prev) {
|
if (!root->prev) {
|
||||||
return;
|
return;
|
||||||
@ -1795,21 +1794,8 @@ void free_text_objects(struct text_object *root, int internal)
|
|||||||
break;
|
break;
|
||||||
#endif /* X11 */
|
#endif /* X11 */
|
||||||
}
|
}
|
||||||
type_is_if = 0;
|
if(obj->special_data)
|
||||||
if(obj->type == OBJ_if_gw || obj->type == OBJ_if_empty || obj->type == OBJ_if_match || obj->type == OBJ_if_existing || obj->type == OBJ_if_mounted || obj->type == OBJ_if_running || obj->type == OBJ_if_updatenr || obj->type == OBJ_if_mixer_mute) type_is_if = 1;
|
free(obj->special_data);
|
||||||
#if defined(IBM)
|
|
||||||
if(obj->type == OBJ_if_smapi_bat_installed) type_is_if = 1;
|
|
||||||
#endif
|
|
||||||
#if defined(__FreeBSD__) || defined(__linux__)
|
|
||||||
if(obj->type == OBJ_if_up) type_is_if = 1;
|
|
||||||
#endif
|
|
||||||
#ifdef MPD
|
|
||||||
if(obj->type == OBJ_if_mpd_playing) type_is_if = 1;
|
|
||||||
#endif
|
|
||||||
#ifdef XMMS2
|
|
||||||
if(obj->type == OBJ_if_xmms2_connected) type_is_if = 1;
|
|
||||||
#endif
|
|
||||||
if(obj->special_data && obj->type != OBJ_else && type_is_if == 0) free(obj->special_data);
|
|
||||||
free(obj);
|
free(obj);
|
||||||
}
|
}
|
||||||
#undef data
|
#undef data
|
||||||
|
@ -107,7 +107,7 @@ static int push_ifblock(struct ifblock_stack_obj **ifblock_stack_top,
|
|||||||
case IFBLOCK_ENDIF:
|
case IFBLOCK_ENDIF:
|
||||||
if (!(*ifblock_stack_top))
|
if (!(*ifblock_stack_top))
|
||||||
CRIT_ERR(NULL, NULL, "got an endif without matching if");
|
CRIT_ERR(NULL, NULL, "got an endif without matching if");
|
||||||
(*ifblock_stack_top)->obj->special_data = obj;
|
(*ifblock_stack_top)->obj->ifblock_next = obj;
|
||||||
/* if there's some else in between, remove and free it */
|
/* if there's some else in between, remove and free it */
|
||||||
if ((*ifblock_stack_top)->type == IFBLOCK_ELSE) {
|
if ((*ifblock_stack_top)->type == IFBLOCK_ELSE) {
|
||||||
stackobj = *ifblock_stack_top;
|
stackobj = *ifblock_stack_top;
|
||||||
@ -122,7 +122,7 @@ static int push_ifblock(struct ifblock_stack_obj **ifblock_stack_top,
|
|||||||
case IFBLOCK_ELSE:
|
case IFBLOCK_ELSE:
|
||||||
if (!(*ifblock_stack_top))
|
if (!(*ifblock_stack_top))
|
||||||
CRIT_ERR(NULL, NULL, "got an else without matching if");
|
CRIT_ERR(NULL, NULL, "got an else without matching if");
|
||||||
(*ifblock_stack_top)->obj->special_data = obj;
|
(*ifblock_stack_top)->obj->ifblock_next = obj;
|
||||||
/* fall through */
|
/* fall through */
|
||||||
case IFBLOCK_IF:
|
case IFBLOCK_IF:
|
||||||
stackobj = malloc(sizeof(struct ifblock_stack_obj));
|
stackobj = malloc(sizeof(struct ifblock_stack_obj));
|
||||||
|
@ -472,6 +472,7 @@ enum text_object_type {
|
|||||||
struct text_object {
|
struct text_object {
|
||||||
struct text_object *next, *prev; /* doubly linked list of text objects */
|
struct text_object *next, *prev; /* doubly linked list of text objects */
|
||||||
struct text_object *sub; /* for objects parsing text into objects */
|
struct text_object *sub; /* for objects parsing text into objects */
|
||||||
|
struct text_object *ifblock_next; /* jump target for ifblock objects */
|
||||||
union {
|
union {
|
||||||
void *opaque; /* new style generic per object data */
|
void *opaque; /* new style generic per object data */
|
||||||
char *s; /* some string */
|
char *s; /* some string */
|
||||||
|
Loading…
Reference in New Issue
Block a user