X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=types%2Ffloat.c;h=dc97af48f1304d99003446b404bf6785169b1640;hp=78270e22aba3cf212ddeb6b6a390c871b5cdfeda;hb=343c801f4e026a36093f654bdf88749d25f75fb4;hpb=a35173fe7e72fe456cbd19db34a5ff7a09a0c7ff diff --git a/types/float.c b/types/float.c index 78270e22..dc97af48 100644 --- a/types/float.c +++ b/types/float.c @@ -3,7 +3,9 @@ * * BabelTrace - Float Type Converter * - * Copyright 2010, 2011 - Mathieu Desnoyers + * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation + * + * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -117,9 +119,11 @@ struct definition * _float->p.index = root_name ? INT_MAX : index; _float->p.name = field_name; _float->value = 0.0; - ret = register_field_definition(field_name, &_float->p, - parent_scope); - assert(!ret); + if (parent_scope) { + ret = register_field_definition(field_name, &_float->p, + parent_scope); + assert(!ret); + } return &_float->p; }