g_free/im_free mixups
This commit is contained in:
parent
4b2c8587b2
commit
0e0cf1481c
8
TODO
8
TODO
@ -3,6 +3,14 @@
|
||||
|
||||
|
||||
|
||||
- im_csv2vips() gets confused by quotes and commas, eg.
|
||||
|
||||
NP_001121179.1,"serine proteinase inhibitor, clade A, member ",ITPNLAEFAFSLYR,0.95588235294118,0.96176470588235, ...
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
- cache work ... see notes in file
|
||||
|
||||
|
||||
|
@ -754,7 +754,9 @@ vips_object_set_property( GObject *gobject,
|
||||
char **member = &G_STRUCT_MEMBER( char *, object,
|
||||
argument_class->offset );
|
||||
|
||||
VIPS_SETSTR( *member, g_value_get_string( value ) );
|
||||
if( *member )
|
||||
g_free( *member );
|
||||
*member = g_value_dup_string( value );
|
||||
}
|
||||
else if( G_IS_PARAM_SPEC_OBJECT( pspec ) ) {
|
||||
GObject **member = &G_STRUCT_MEMBER( GObject *, object,
|
||||
|
Loading…
Reference in New Issue
Block a user