Changeset 1738

Show
Ignore:
Timestamp:
2006-01-03 19:37:25 (3 years ago)
Author:
ctford
Message:

Removed magic numbers and unused variables.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • phpannodex/trunk/src/phpanx_write.c

    r1737 r1738  
    33#include "phpanx_write.h" 
    44 
     5#define PERSISTENT      1 
     6#define NON_PERSISTENT  0 
    57 
    68PHP_FUNCTION(anx_init_importers) 
     
    130132        long n; 
    131133        ANNODEX *anx; 
    132         int bytes_written, buffer_length
    133         zval *anx_resource, *raw_data
     134        int bytes_written
     135        zval *anx_resource
    134136        unsigned char* buffer; 
    135137 
     
    142144                LE_ANX_HANDLE_NAME, le_anx_handle); 
    143145 
    144         buffer = pemalloc( n * sizeof(char) , 1 ); 
     146        buffer = pemalloc( n * sizeof(char) , PERSISTENT ); 
    145147 
    146148        if( buffer == NULL ) {