Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jna
  • Order by date
  1. jna

    REALLOC problems while debugging step by step

    I use a REALLOC in a dll: dll_function(X_CHAR **pp_host) { X_CHAR *lp_host = NULL; lp_host = realloc(*pp_host, 64 * sizeof(X_CHAR)); } Where pp_host is initialised in the application using the dll: X_CHAR *pp_host = NULL; pp_host = malloc(20* sizeof(X_CHAR))...

Part and Inventory Search

Back
Top