[Enterprise Extensions only]

CORBA::string_free

Overview Frees a string allocated by CORBA::string_alloc() or CORBA::string_dup().
Original class CORBA


Intended Usage

This method is intended to be used by client and server applications to release storage originally allocated using CORBA::string_alloc() or CORBA::string_dup().

IDL Syntax

  static void string_free(char* str);

Input parameters

str
The string to be freed. If this parameter is NULL, the method has no effect.

Return values

None.

Example

See the example for the CORBA::string_alloc method.